summaryrefslogtreecommitdiff
path: root/libre/systemd/udev-hook
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2021-05-29 19:30:30 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2021-05-29 19:30:30 -0500
commita07e01dc2f6ff50730c1bc5534e0c7f649a23fd8 (patch)
tree9ee90a99792686befaca90d6d8c9a49419b8e740 /libre/systemd/udev-hook
parentc58431561db196368bdaffcbdc7fb02c9f91b133 (diff)
downloadabslibre-a07e01dc2f6ff50730c1bc5534e0c7f649a23fd8.tar.gz
abslibre-a07e01dc2f6ff50730c1bc5534e0c7f649a23fd8.tar.bz2
abslibre-a07e01dc2f6ff50730c1bc5534e0c7f649a23fd8.zip
systemd-248.3-2.parabola1: updating version
Diffstat (limited to 'libre/systemd/udev-hook')
-rw-r--r--libre/systemd/udev-hook8
1 files changed, 8 insertions, 0 deletions
diff --git a/libre/systemd/udev-hook b/libre/systemd/udev-hook
index 61d853293..659463af7 100644
--- a/libre/systemd/udev-hook
+++ b/libre/systemd/udev-hook
@@ -1,6 +1,14 @@
#!/bin/sh -e
+is_chrooted() {
+ if systemd-detect-virt --chroot; then
+ echo >&2 " Skipped: Running in chroot."
+ exit 0
+ fi
+}
+
udevd_live() {
+ is_chrooted
if [ ! -d /run/udev ]; then
echo >&2 " Skipped: Device manager is not running."
exit 0