Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 564008 | Differences between
and this patch

Collapse All | Expand All

(-)a/conf.d/fsck (+5 lines)
Lines 32-34 fsck_on_battery="YES" Link Here
32
# This is useful when periodic filesystem checks are causing undesirable
32
# This is useful when periodic filesystem checks are causing undesirable
33
# delays at startup, but such delays at shutdown are acceptable.
33
# delays at startup, but such delays at shutdown are acceptable.
34
fsck_shutdown="NO"
34
fsck_shutdown="NO"
35
36
# fsck_do_not_abort causes fsck to not abort if there are any errors on fsck
37
# This is useful when periodic filesystem checks are causing undesirable
38
# aborts at startup.
39
fsck_do_not_abort="NO"
(-)a/init.d/fsck.in (-3 / +6 lines)
Lines 13-20 depend() Link Here
13
}
13
}
14
14
15
_abort() {
15
_abort() {
16
	rc-abort
16
	if yesno $fsck_do_not_abort; then
17
	return 1
17
	   return 1
18
	else
19
	   rc-abort
20
	   return 1
21
	fi
18
}
22
}
19
23
20
# We should only reboot when first booting
24
# We should only reboot when first booting
21
- 

Return to bug 564008