ssm-services/services/mount

15 lines
176 B
Plaintext
Raw Normal View History

#!/usr/bin/env ssm
2013-09-28 23:32:39 +00:00
service_type='oneshot'
service_command=( /usr/bin/mount -a )
pre_start() {
if [[ -w / ]]; then
mount -o remount,rw /
fi
}
2013-09-28 23:32:39 +00:00
post_start() {
swapon -a
}