ssm-services/services/fsck
fbt d85b1945e9 kek
Signed-off-by: fbt <fbt@fleshless.org>
2017-12-10 20:44:17 +03:00

20 lines
312 B
Plaintext
Executable File

#!/usr/bin/env ssm
service_type='oneshot'
service_command=( /usr/bin/fsck -A -C -p )
pre_start() {
printf 'Remounting / as read-only...\n'
mount / -o remount,ro
}
start() {
printf 'Checking filesystems...\n'
super_start
}
post_start() {
printf 'Remounting / as read-write...\n'
mount / -o remount,rw
}