-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild_centos.sh
executable file
·91 lines (77 loc) · 2.11 KB
/
build_centos.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/bin/bash -e
# Created by:
usage() {
cat <<EOF
Usage: $0 [options]
This script is intended to build CentOS images for docker style containers of any architecture and version, available.
Options:
-h This output.
-v CentOS version (default 6.5)
-a CentOS architecture (default x86_64)
-t Base temp build directory. (default mktemp -d)
-p Install additional packages, one per flag.
(default: centos-release, yum, iputils, tar, which)
-m Alternative mirror to use. (default: http://mirrors.mit.edu/centos/$version/os/$arch/)
This will not use a set version or arch, only mirror.
EOF
}
pkgs="-i centos-release -i yum -i which -i iputils -i tar"
## Handle cli arguments
while getopts "hv:a:t:p:" opt
do
case $opt in
h)
usage
exit 0
;;
v)
version="$OPTARG"
;;
a)
arch="$OPTARG"
;;
t)
tempdir=$( mktemp -p "$OPTARG" )
trap "echo removing ${tmpdir}; rm -rf ${tmpdir}" EXIT
;;
p)
pkgs="$pkgs -i $OPTARG"
;;
m)
mirror="$OPTARG"
;;
?)
usage
exit 1
;;
esac
done
## Set defaults if args were not provided
if [[ -z $version ]]; then
version="6.5"
fi
if [[ -z $arch ]]; then
arch="x86_64"
fi
if [[ -z $tempdir ]]; then
tmpdir=$( mktemp -d )
trap "echo removing ${tmpdir}; rm -rf ${tmpdir}" EXIT
fi
if [[ -z $mirror ]]; then
mirror="http://mirrors.mit.edu/centos/$version/os/$arch/"
fi
ver=$( echo $version | sed s/[.]// )
## requires running as root because filesystem package won't install otherwise,
## giving a cryptic error about /proc, cpio, and utime. As a result, /tmp
## doesn't exist.
[ $( id -u ) -eq 0 ] || { echo "must be root"; exit 1; }
## Download and build base image
febootstrap $pkgs centos$ver ${tmpdir} $mirror
## Enable networking service
febootstrap-run ${tmpdir} -- sh -c 'echo "NETWORKING=yes" > /etc/sysconfig/network'
## set timezone of container to UTC
febootstrap-run ${tmpdir} -- ln -f /usr/share/zoneinfo/Etc/UTC /etc/localtime
## Clean yum junk
febootstrap-run ${tmpdir} -- yum clean all
## xz gives the smallest size by far, compared to bzip2 and gzip, by like 50%!
febootstrap-run ${tmpdir} -- tar -cf - . | xz > centos$ver-$arch.tar.xz