You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
931 B
24 lines
931 B
From c643f4e8abb4ea65b219414b23555772160ab41e Mon Sep 17 00:00:00 2001 |
|
From: Harald Hoyer <harald@redhat.com> |
|
Date: Wed, 12 Aug 2015 14:27:39 +0200 |
|
Subject: [PATCH] dracut-systemd/dracut-initqueue.sh: be verbose about timeout |
|
|
|
Issue a warning, if timeout scripts are executed |
|
|
|
(cherry picked from commit 8ba684be1c04976204d2b671ab90cb27791f467b) |
|
--- |
|
modules.d/98systemd/dracut-initqueue.sh | 1 + |
|
1 file changed, 1 insertion(+) |
|
|
|
diff --git a/modules.d/98systemd/dracut-initqueue.sh b/modules.d/98systemd/dracut-initqueue.sh |
|
index 37bc18f1..5822556b 100755 |
|
--- a/modules.d/98systemd/dracut-initqueue.sh |
|
+++ b/modules.d/98systemd/dracut-initqueue.sh |
|
@@ -57,6 +57,7 @@ while :; do |
|
done |
|
|
|
if [ $main_loop -gt $((2*$RDRETRY/3)) ]; then |
|
+ warn "dracut-initqueue timeout - starting timeout scripts" |
|
for job in $hookdir/initqueue/timeout/*.sh; do |
|
[ -e "$job" ] || break |
|
job=$job . $job
|
|
|