archbox/remount_run.bash
2020-11-02 19:36:27 +07:00

15 lines
210 B
Bash
Executable File

#!/bin/bash
source /etc/archbox.conf
case $1 in
killxdg)
umount -l $CHROOT/run
fuser -km $(cat /tmp/archbox_xdg_runtime_dir)
;;
*)
umount -l $CHROOT/run
mount --rbind /run $CHROOT/run
;;
esac