Add start and stop argument.

This commit is contained in:
lemniskett 2020-11-11 20:02:05 +07:00
parent 6c9e20617f
commit ebd343457c

View File

@ -2,6 +2,8 @@
source /etc/archbox.conf source /etc/archbox.conf
case $1 in
start)
mount -R /home $CHROOT/home mount -R /home $CHROOT/home
mount -t proc /proc $CHROOT/proc mount -t proc /proc $CHROOT/proc
mount -R /tmp $CHROOT/tmp mount -R /tmp $CHROOT/tmp
@ -11,4 +13,19 @@ mount -R /run $CHROOT/run
mount -R /lib/modules $CHROOT/lib/modules mount -R /lib/modules $CHROOT/lib/modules
mount -R /boot $CHROOT/boot mount -R /boot $CHROOT/boot
mount -R /var/lib/dbus $CHROOT/var/lib/dbus mount -R /var/lib/dbus $CHROOT/var/lib/dbus
chroot $CHROOT /usr/local/bin/serviced chroot $CHROOT /usr/local/bin/serviced >/dev/null 2>&1
exit 0
;;
stop)
umount -R $CHROOT/home
umount -R $CHROOT/proc
umount -R $CHROOT/tmp
umount -R $CHROOT/sys
umount -R $CHROOT/dev
umount -R $CHROOT/run
umount -R $CHROOT/lib/modules
umount -R $CHROOT/boot
umount -R $CHROOT/var/lib/dbus
exit 0
;;
esac