Files
ssm-services/init.d/mount
2014-07-28 08:08:42 +04:00

12 lines
136 B
Plaintext
Executable File

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