summaryrefslogtreecommitdiffstats
path: root/0023-dracut-logger.sh-do-not-unset-logging-messages-if-sy.patch
diff options
context:
space:
mode:
Diffstat (limited to '0023-dracut-logger.sh-do-not-unset-logging-messages-if-sy.patch')
-rw-r--r--0023-dracut-logger.sh-do-not-unset-logging-messages-if-sy.patch55
1 files changed, 0 insertions, 55 deletions
diff --git a/0023-dracut-logger.sh-do-not-unset-logging-messages-if-sy.patch b/0023-dracut-logger.sh-do-not-unset-logging-messages-if-sy.patch
deleted file mode 100644
index 17cdf98..0000000
--- a/0023-dracut-logger.sh-do-not-unset-logging-messages-if-sy.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-From 3e6c9011d0f42e19c1c5e2b04b41073100edcf14 Mon Sep 17 00:00:00 2001
-From: Harald Hoyer <harald@redhat.com>
-Date: Fri, 9 Aug 2013 15:47:30 +0200
-Subject: [PATCH] dracut-logger.sh: do not unset logging messages if sysloglvl
- is set
-
----
- dracut-logger.sh | 12 ++++++------
- 1 file changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/dracut-logger.sh b/dracut-logger.sh
-index f4dcdb8..ff23301 100755
---- a/dracut-logger.sh
-+++ b/dracut-logger.sh
-@@ -173,34 +173,34 @@ dlog_init() {
- export maxloglvl
-
-
-- if (($stdloglvl < 6)) && (($kmsgloglvl < 6)) && (($fileloglvl < 6)); then
-+ if (($stdloglvl < 6)) && (($kmsgloglvl < 6)) && (($fileloglvl < 6)) && (($sysloglvl < 6)); then
- unset dtrace
- dtrace() { :; };
- fi
-
-- if (($stdloglvl < 5)) && (($kmsgloglvl < 5)) && (($fileloglvl < 5)); then
-+ if (($stdloglvl < 5)) && (($kmsgloglvl < 5)) && (($fileloglvl < 5)) && (($sysloglvl < 5)); then
- unset ddebug
- ddebug() { :; };
- fi
-
-- if (($stdloglvl < 4)) && (($kmsgloglvl < 4)) && (($fileloglvl < 4)); then
-+ if (($stdloglvl < 4)) && (($kmsgloglvl < 4)) && (($fileloglvl < 4)) && (($sysloglvl < 4)); then
- unset dinfo
- dinfo() { :; };
- fi
-
-- if (($stdloglvl < 3)) && (($kmsgloglvl < 3)) && (($fileloglvl < 3)); then
-+ if (($stdloglvl < 3)) && (($kmsgloglvl < 3)) && (($fileloglvl < 3)) && (($sysloglvl < 3)); then
- unset dwarn
- dwarn() { :; };
- unset dwarning
- dwarning() { :; };
- fi
-
-- if (($stdloglvl < 2)) && (($kmsgloglvl < 2)) && (($fileloglvl < 2)); then
-+ if (($stdloglvl < 2)) && (($kmsgloglvl < 2)) && (($fileloglvl < 2)) && (($sysloglvl < 2)); then
- unset derror
- derror() { :; };
- fi
-
-- if (($stdloglvl < 1)) && (($kmsgloglvl < 1)) && (($fileloglvl < 1)); then
-+ if (($stdloglvl < 1)) && (($kmsgloglvl < 1)) && (($fileloglvl < 1)) && (($sysloglvl < 1)); then
- unset dfatal
- dfatal() { :; };
- fi