You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
855 B

1 year ago
#!/bin/sh
#
# This boot scripts runs a service subhost as defined by the
# configuration file named on the command line.
# See "man overlay-boot" for details.
1 year ago
set -x
PROGRAMDIR="$(dirname $(realpath $0))"
. $PROGRAMDIR/functions
subhost_name $1
1 year ago
if [ -z "$UNSHARED" ] ; then
if [ ! -r /run/netns/$NAME ] ; then
ip netns add $NAME
ip netns exec $NAME ip link set lo up || exit 1
fi
1 year ago
exec env UNSHARED=yes unshare -m $0 $@ > $LOG 2>&1 &
echo "Logging to $LOG" >&2
exit 0
fi
subhost_config
1 year ago
setup_veth_cables $NAME $CABLES
setup_overlay "$NAME" "$LIVE" "$LOWER" "$UPPER" "$WORK"
exithandler() {
ip netns del $NAME
[ "$UPPER" != "$LIVE" ] && umount -R "$LIVE"
1 year ago
}
trap "exithandler" 0
CMD="unshare -fp --mount-proc -i -u ip netns exec $NAME chroot $LIVE /bin/sh"
1 year ago
echo "$CMD"
env CONFIG="$CONFIG" $INIT | $CMD
1 year ago
echo "EXITED $CMD"