diff --git a/services/mount b/services/mount index f6cac07..171c245 100755 --- a/services/mount +++ b/services/mount @@ -4,7 +4,9 @@ service_type='oneshot' service_command=( /usr/bin/mount -a ) pre_start() { - [[ -w / ]] || { mount -o remount,rw /; } + if [[ -w / ]]; then + mount -o remount,rw / + fi } post_start() {