archbox/remount_run.bash

15 lines
210 B
Bash
Raw Normal View History

#!/bin/bash
source /etc/archbox.conf
2020-11-02 12:36:27 +00:00
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