Add start and stop argument.
This commit is contained in:
parent
6c9e20617f
commit
ebd343457c
@ -2,6 +2,8 @@
|
||||
|
||||
source /etc/archbox.conf
|
||||
|
||||
case $1 in
|
||||
start)
|
||||
mount -R /home $CHROOT/home
|
||||
mount -t proc /proc $CHROOT/proc
|
||||
mount -R /tmp $CHROOT/tmp
|
||||
@ -11,4 +13,19 @@ mount -R /run $CHROOT/run
|
||||
mount -R /lib/modules $CHROOT/lib/modules
|
||||
mount -R /boot $CHROOT/boot
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user