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