|
@@ -6,3 +6,8 @@ LOGGER="logger -t concierge -s"
|
|
|
if type "systemctl" > /dev/null; then
|
|
|
systemctl list-units --failed --plain --no-legend 2>&1 | $LOGGER
|
|
|
fi
|
|
|
+
|
|
|
+# dpkg: sanity and consistency checks (broken, half-installed, ...)
|
|
|
+if type "dpkg" > /dev/null; then
|
|
|
+ dpkg --audit 2>&1 | $LOGGER
|
|
|
+fi
|