ssm-services/init.d/mount

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