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'
|
2013-11-25 07:39:24 +04:00
|
|
|
|
2014-07-28 07:52:32 +04:00
|
|
|
spawn() {
|
2013-11-25 07:39:24 +04:00
|
|
|
[[ -w / ]] || { mount -o remount,rw /; }
|
|
|
|
mount -a
|
2014-02-25 04:45:13 +04:00
|
|
|
swapon -a
|
2013-11-25 07:39:24 +04:00
|
|
|
}
|
2013-09-29 03:32:39 +04:00
|
|
|
|
|
|
|
unset stop
|