Update hack/dind to match the rest of our scripts

No functional changes here, just coding style and maintainability.

Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon)
This commit is contained in:
Tianon Gravi 2014-04-28 23:13:25 -06:00
Родитель af72ca199d
Коммит b1fe1797f3
1 изменённых файлов: 34 добавлений и 26 удалений

Просмотреть файл

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
set -e
# DinD: a wrapper script which allows docker to be run inside a docker container. # DinD: a wrapper script which allows docker to be run inside a docker container.
# Original version by Jerome Petazzoni <jerome@dotcloud.com> # Original version by Jerome Petazzoni <jerome@dotcloud.com>
@ -12,29 +13,28 @@
# First, make sure that cgroups are mounted correctly. # First, make sure that cgroups are mounted correctly.
CGROUP=/sys/fs/cgroup CGROUP=/sys/fs/cgroup
[ -d $CGROUP ] || mkdir -p "$CGROUP"
mkdir $CGROUP
mountpoint -q $CGROUP || if ! mountpoint -q "$CGROUP"; then
mount -n -t tmpfs -o uid=0,gid=0,mode=0755 cgroup $CGROUP || { mount -n -t tmpfs -o uid=0,gid=0,mode=0755 cgroup $CGROUP || {
echo "Could not make a tmpfs mount. Did you use --privileged?" echo >&2 'Could not make a tmpfs mount. Did you use --privileged?'
exit 1 exit 1
} }
fi
if [ -d /sys/kernel/security ] && ! mountpoint -q /sys/kernel/security if [ -d /sys/kernel/security ] && ! mountpoint -q /sys/kernel/security; then
then
mount -t securityfs none /sys/kernel/security || { mount -t securityfs none /sys/kernel/security || {
echo "Could not mount /sys/kernel/security." echo >&2 'Could not mount /sys/kernel/security.'
echo "AppArmor detection and -privileged mode might break." echo >&2 'AppArmor detection and -privileged mode might break.'
} }
fi fi
# Mount the cgroup hierarchies exactly as they are in the parent system. # Mount the cgroup hierarchies exactly as they are in the parent system.
for SUBSYS in $(cut -d: -f2 /proc/1/cgroup) for SUBSYS in $(cut -d: -f2 /proc/1/cgroup); do
do mkdir -p "$CGROUP/$SUBSYS"
[ -d $CGROUP/$SUBSYS ] || mkdir $CGROUP/$SUBSYS if ! mountpoint -q $CGROUP/$SUBSYS; then
mountpoint -q $CGROUP/$SUBSYS || mount -n -t cgroup -o "$SUBSYS" cgroup "$CGROUP/$SUBSYS"
mount -n -t cgroup -o $SUBSYS cgroup $CGROUP/$SUBSYS fi
# The two following sections address a bug which manifests itself # The two following sections address a bug which manifests itself
# by a cryptic "lxc-start: no ns_cgroup option specified" when # by a cryptic "lxc-start: no ns_cgroup option specified" when
@ -49,26 +49,30 @@ do
# Systemd and OpenRC (and possibly others) both create such a # Systemd and OpenRC (and possibly others) both create such a
# cgroup. To avoid the aforementioned bug, we symlink "foo" to # cgroup. To avoid the aforementioned bug, we symlink "foo" to
# "name=foo". This shouldn't have any adverse effect. # "name=foo". This shouldn't have any adverse effect.
echo $SUBSYS | grep -q ^name= && { name="${SUBSYS#name=}"
NAME=$(echo $SUBSYS | sed s/^name=//) if [ "$name" != "$SUBSYS" ]; then
ln -s $SUBSYS $CGROUP/$NAME ln -s "$SUBSYS" "$CGROUP/$name"
} fi
# Likewise, on at least one system, it has been reported that # Likewise, on at least one system, it has been reported that
# systemd would mount the CPU and CPU accounting controllers # systemd would mount the CPU and CPU accounting controllers
# (respectively "cpu" and "cpuacct") with "-o cpuacct,cpu" # (respectively "cpu" and "cpuacct") with "-o cpuacct,cpu"
# but on a directory called "cpu,cpuacct" (note the inversion # but on a directory called "cpu,cpuacct" (note the inversion
# in the order of the groups). This tries to work around it. # in the order of the groups). This tries to work around it.
[ $SUBSYS = cpuacct,cpu ] && ln -s $SUBSYS $CGROUP/cpu,cpuacct if [ "$SUBSYS" = 'cpuacct,cpu' ]; then
ln -s "$SUBSYS" "$CGROUP/cpu,cpuacct"
fi
done done
# Note: as I write those lines, the LXC userland tools cannot setup # Note: as I write those lines, the LXC userland tools cannot setup
# a "sub-container" properly if the "devices" cgroup is not in its # a "sub-container" properly if the "devices" cgroup is not in its
# own hierarchy. Let's detect this and issue a warning. # own hierarchy. Let's detect this and issue a warning.
grep -q :devices: /proc/1/cgroup || if ! grep -q :devices: /proc/1/cgroup; then
echo "WARNING: the 'devices' cgroup should be in its own hierarchy." echo >&2 'WARNING: the "devices" cgroup should be in its own hierarchy.'
grep -qw devices /proc/1/cgroup || fi
echo "WARNING: it looks like the 'devices' cgroup is not mounted." if ! grep -qw devices /proc/1/cgroup; then
echo >&2 'WARNING: it looks like the "devices" cgroup is not mounted.'
fi
# Now, close extraneous file descriptors. # Now, close extraneous file descriptors.
pushd /proc/self/fd >/dev/null pushd /proc/self/fd >/dev/null
@ -89,5 +93,9 @@ popd >/dev/null
# Mount /tmp # Mount /tmp
mount -t tmpfs none /tmp mount -t tmpfs none /tmp
[ "$1" ] && exec "$@" if [ $# -gt 0 ]; then
echo "You probably want to run hack/make.sh, or maybe a shell?" exec "$@"
fi
echo >&2 'ERROR: No command specified.'
echo >&2 'You probably want to run hack/make.sh, or maybe a shell?'