Files
iconograph/server/chroot_files/persistent.conf

12 lines
190 B
Plaintext
Raw Normal View History

2016-03-31 11:50:37 -07:00
description "Mount /persistent"
start on filesystem
script
DEV=$(findfs LABEL=persistent)
if test "$?" = "0"; then
mkdir /persistent
mount "${DEV}" /persistent
fi
end script