summaryrefslogtreecommitdiffstats
path: root/tags/u/udevadm-called-without-guard.tag
diff options
context:
space:
mode:
Diffstat (limited to 'tags/u/udevadm-called-without-guard.tag')
-rw-r--r--tags/u/udevadm-called-without-guard.tag14
1 files changed, 14 insertions, 0 deletions
diff --git a/tags/u/udevadm-called-without-guard.tag b/tags/u/udevadm-called-without-guard.tag
new file mode 100644
index 0000000..2661966
--- /dev/null
+++ b/tags/u/udevadm-called-without-guard.tag
@@ -0,0 +1,14 @@
+Tag: udevadm-called-without-guard
+Severity: warning
+Check: scripts
+Explanation: The specified maintainer script uses <code>set -e</code> but seems to
+ call <code>udevadm(8)</code> without a conditional guard.
+ .
+ <code>udevadm</code> can exist but be non-functional (such as inside a
+ chroot) and thus can result in package installation or upgrade failure
+ if the call fails.
+ .
+ Please guard the return code of the call via wrapping it in a suitable
+ <code>if</code> construct, appending <code>|| true</code> or depending on the
+ <code>udev</code> package.
+See-Also: Bug#890224, udevadm(8)