Files
iconograph/server/chroot_files/persistent.conf
2016-03-31 11:50:37 -07:00

12 lines
190 B
Plaintext

description "Mount /persistent"
start on filesystem
script
DEV=$(findfs LABEL=persistent)
if test "$?" = "0"; then
mkdir /persistent
mount "${DEV}" /persistent
fi
end script