forked from Spark/ssm-services
13 lines
141 B
Plaintext
Executable File
13 lines
141 B
Plaintext
Executable File
#!/usr/bin/env watchman
|
|
|
|
depends miscfs
|
|
|
|
service_type='oneshot'
|
|
|
|
start() {
|
|
[[ -w / ]] || { mount -o remount,rw /; }
|
|
mount -a
|
|
}
|
|
|
|
unset stop
|