2013-09-28 23:32:39 +00:00
|
|
|
#!/usr/bin/env watchman
|
|
|
|
|
|
|
|
service_type='oneshot'
|
|
|
|
|
|
|
|
start() {
|
|
|
|
watchman.msg "Remounting / as read-only..."
|
|
|
|
mount / -o remount,ro
|
|
|
|
|
|
|
|
watchman.msg "Checking filesystems..."
|
2014-07-20 20:24:01 +00:00
|
|
|
/usr/bin/fsck -A -C -p
|
2013-09-28 23:32:39 +00:00
|
|
|
|
|
|
|
watchman.msg "Remounting / as read-write..."
|
|
|
|
mount / -o remount,rw
|
|
|
|
}
|