summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rw-r--r--etc/defaults/rc.conf1
-rwxr-xr-xetc/rc.d/fsck4
2 files changed, 3 insertions, 2 deletions
diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf
index f381423..edeedae 100644
--- a/etc/defaults/rc.conf
+++ b/etc/defaults/rc.conf
@@ -83,6 +83,7 @@ geli_swap_flags="-e aes -l 256 -s 4096 -d" # Options for GELI-encrypted
root_rw_mount="YES" # Set to NO to inhibit remounting root read-write.
fsck_y_enable="NO" # Set to YES to do fsck -y if the initial preen fails.
+fsck_y_flags="" # Additional flags for fsck -y
background_fsck="YES" # Attempt to run fsck in the background where possible.
background_fsck_delay="60" # Time to wait (seconds) before starting the fsck.
netfs_types="nfs:NFS nfs4:NFS4 smbfs:SMB portalfs:PORTAL nwfs:NWFS" # Net filesystems.
diff --git a/etc/rc.d/fsck b/etc/rc.d/fsck
index bf51089..a2ca0b7 100755
--- a/etc/rc.d/fsck
+++ b/etc/rc.d/fsck
@@ -44,8 +44,8 @@ fsck_start()
;;
8)
if checkyesno fsck_y_enable; then
- echo "File system preen failed, trying fsck -y."
- fsck -y
+ echo "File system preen failed, trying fsck -y ${fsck_y_flags}"
+ fsck -y ${fsck_y_flags}
case $? in
0)
;;
OpenPOWER on IntegriCloud