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() {
|
2018-01-07 23:47:28 +00:00
|
|
|
if [[ -w / ]]; then
|
|
|
|
mount -o remount,rw /
|
|
|
|
fi
|
2013-11-25 03:39:24 +00:00
|
|
|
}
|
2013-09-28 23:32:39 +00:00
|
|
|
|
2017-07-13 13:09:42 +00:00
|
|
|
post_start() {
|
|
|
|
swapon -a
|
|
|
|
}
|