12 lines
136 B
Plaintext
Executable File
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
|