ssm-services/init.d/mount
2014-02-25 04:45:13 +04:00

14 lines
152 B
Plaintext
Executable File

#!/usr/bin/env watchman
depends miscfs
service_type='oneshot'
start() {
[[ -w / ]] || { mount -o remount,rw /; }
mount -a
swapon -a
}
unset stop