23 lines
733 B
Diff
23 lines
733 B
Diff
|
From f11712ea2189e01004115702a3756b70122c3b05 Mon Sep 17 00:00:00 2001
|
||
|
From: Harald Hoyer <harald@redhat.com>
|
||
|
Date: Tue, 10 Dec 2013 12:58:37 +0100
|
||
|
Subject: [PATCH] base/rdsosreport.sh: add "ip a" output
|
||
|
|
||
|
---
|
||
|
modules.d/99base/rdsosreport.sh | 2 ++
|
||
|
1 file changed, 2 insertions(+)
|
||
|
|
||
|
diff --git a/modules.d/99base/rdsosreport.sh b/modules.d/99base/rdsosreport.sh
|
||
|
index bfa55bb..5e11166 100755
|
||
|
--- a/modules.d/99base/rdsosreport.sh
|
||
|
+++ b/modules.d/99base/rdsosreport.sh
|
||
|
@@ -42,6 +42,8 @@ command -v dmsetup >/dev/null 2>/dev/null && dmsetup ls --tree
|
||
|
|
||
|
cat /proc/mdstat
|
||
|
|
||
|
+command -v ip >/dev/null 2>/dev/null && ip addr
|
||
|
+
|
||
|
if command -v journalctl >/dev/null 2>/dev/null; then
|
||
|
journalctl -ab --no-pager -o short-monotonic
|
||
|
else
|