remove noise and stripping
[rrq/overlay-boot.git] / overlay-boot
1 #!/bin/sh
2 #
3 # This boot scripts runs a service subhost as defined by the
4 # configuration file named on the command line.
5 # See "man overlay-boot" for details.
6
7 set -x
8 PROGRAMDIR="$(dirname $(realpath $0))"
9 . $PROGRAMDIR/functions
10
11 subhost_name $1
12
13 if [ -z "$UNSHARED" ] ; then
14     if [ ! -r /run/netns/$NAME ] ; then
15         ip netns add $NAME
16         ip netns exec $NAME ip link set lo up || exit 1
17     fi
18     exec env UNSHARED=yes unshare -m $0 $@ > $LOG 2>&1 &
19     echo "Logging to $LOG" >&2
20     exit 0
21 fi
22
23 subhost_config
24 setup_veth_cables $NAME $CABLES
25 setup_overlay "$NAME" "$LIVE" "$LOWER" "$UPPER" "$WORK"
26
27 exithandler() {
28     ip netns del $NAME
29     [ "$UPPER" != "$LIVE" ] && umount -R "$LIVE"
30 }
31 trap "exithandler" 0
32
33 CMD="unshare -fp --mount-proc -i -u ip netns exec $NAME chroot $LIVE /bin/sh"
34 echo "$CMD"
35 env CONFIG="$CONFIG" $INIT | $CMD
36 echo "EXITED $CMD"