Files
ssm-services/services/mount
T

13 lines
169 B
Plaintext
Raw Normal View History

2017-07-13 16:09:42 +03:00
#!/usr/bin/env ssm
2013-09-29 03:32:39 +04:00
service_type='oneshot'
2017-07-13 16:09:42 +03:00
service_command=( /usr/bin/mount -a )
2017-07-13 16:09:42 +03:00
pre_start() {
[[ -w / ]] || { mount -o remount,rw /; }
}
2013-09-29 03:32:39 +04:00
2017-07-13 16:09:42 +03:00
post_start() {
swapon -a
}