Files
ssm-services/init.d/mount
T

14 lines
152 B
Plaintext
Raw Normal View History

2013-09-29 03:32:39 +04:00
#!/usr/bin/env watchman
2014-07-28 07:52:32 +04:00
depends miscfs
2013-09-29 03:32:39 +04:00
service_type='oneshot'
2014-07-28 07:52:32 +04:00
spawn() {
[[ -w / ]] || { mount -o remount,rw /; }
mount -a
2014-02-25 04:45:13 +04:00
swapon -a
}
2013-09-29 03:32:39 +04:00
unset stop