diagnostics-server: add more diagnostics

For networking:
- ifconfig -a
- brctl show

For storage:
- mount
- df

Signed-off-by: David Scott <dave@recoil.org>
This commit is contained in:
David Scott 2016-03-30 10:34:04 +01:00
parent af9b3ad7a2
commit 75f60eca3c

View File

@ -10,8 +10,12 @@ cd $TEMP
ps uax > "ps -aux"
netstat -an > "netstat -an"
iptables -L > "iptables -L"
ifconfig -a > "ifconfig -a"
brctl show > "brctl show"
dmesg > dmesg
timeout -t 2 docker ps > "docker ps"
mount > "mount"
df > "df"
/usr/bin/diagnostics > "diagnostics"
dig docker.com > "dig docker.com"
wget -O - http://www.docker.com/ &> "wget docker.com"