From 24ffe659b3302e0fe0d6c0900dc7ed1a7bfc137d Mon Sep 17 00:00:00 2001 From: Jeff Date: Thu, 25 Sep 2014 20:29:43 -0700 Subject: [PATCH] added sysctl.conf --- lib/resources/diagnostics/collect-linux-info.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/resources/diagnostics/collect-linux-info.sh b/lib/resources/diagnostics/collect-linux-info.sh index 087e03047e..860c310680 100644 --- a/lib/resources/diagnostics/collect-linux-info.sh +++ b/lib/resources/diagnostics/collect-linux-info.sh @@ -38,6 +38,9 @@ set +e /bin/cat /etc/redhat-release > redhat-release.txt 2>&1 /bin/cat /etc/lsb-release > lsb-release.txt 2>&1 +# System kernel settings +/bin/cat /etc/sysctl.conf > sysctl.conf 2>&1 + # Proc filesystem. /bin/cat /proc/stat > proc_stat.txt 2>&1 /bin/cat /proc/cpuinfo > proc_cpuinfo.txt 2>&1