14 lines
152 B
Plaintext
Executable File
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
|