Control: severity -1 important Control: tags -1 patch
--- 24_fsckfix.py.bak 2019-10-03 12:17:11.553338016 +0200
+++ 24_fsckfix.py 2019-10-03 12:18:34.184342097 +0200
@@ -20,7 +20,9 @@
f.close()
if not fsckfix:
return [TestFSCKFix.ErrorFSCKFix()]
+ elif os.access("/run/systemd/system", os.F_OK):
+ return []
else:
- raise IOError("/etc/default/rcS not found, is this Debian?")
+ raise IOError("/etc/default/rcS nor /run/systemd/system found, is this Debian?")
return []
register_test(TestFSCKFix)

