Meldung und Fehlermeldungen deaktiviert
This commit is contained in:
parent
553f8873fe
commit
52bc2e3212
@ -87,7 +87,7 @@ fi
|
||||
########################################################
|
||||
# Daemons test
|
||||
|
||||
if systemctl is-failed fastd.service
|
||||
if systemctl is-failed fastd.service > /dev/null 2>&1
|
||||
then
|
||||
echo "fastd läuft nicht"
|
||||
fehler=1
|
||||
@ -96,7 +96,7 @@ else
|
||||
echo "OK"
|
||||
fi
|
||||
|
||||
if systemctl is-failed babeld.service
|
||||
if systemctl is-failed babeld.service > /dev/null 2>&1
|
||||
then
|
||||
echo "babeld läuft nicht"
|
||||
fehler=1
|
||||
@ -105,7 +105,7 @@ else
|
||||
echo "OK"
|
||||
fi
|
||||
|
||||
if systemctl is-failed babelweb.service
|
||||
if systemctl is-failed babelweb.service > /dev/null 2>&1
|
||||
then
|
||||
echo "babelweb läuft nicht"
|
||||
fehler=1
|
||||
@ -114,7 +114,7 @@ else
|
||||
echo "OK"
|
||||
fi
|
||||
|
||||
if systemctl is-failed vnstat.service
|
||||
if systemctl is-failed vnstat.service > /dev/null 2>&1
|
||||
then
|
||||
echo "vnstat läuft nicht"
|
||||
fehler=1
|
||||
@ -123,7 +123,7 @@ else
|
||||
echo "OK"
|
||||
fi
|
||||
|
||||
if systemctl is-failed isc-dhcp-server.service
|
||||
if systemctl is-failed isc-dhcp-server.service > /dev/null 2>&1
|
||||
then
|
||||
echo "dhcp-Server läuft nicht"
|
||||
fehler=1
|
||||
@ -132,7 +132,7 @@ else
|
||||
echo "OK"
|
||||
fi
|
||||
|
||||
if systemctl is-failed bind9.service
|
||||
if systemctl is-failed bind9.service > /dev/null 2>&1
|
||||
then
|
||||
echo "bind9 läuft nicht"
|
||||
fehler=1
|
||||
@ -141,7 +141,7 @@ else
|
||||
echo "OK"
|
||||
fi
|
||||
|
||||
if systemctl is-failed apache2.service
|
||||
if systemctl is-failed apache2.service > /dev/null 2>&1
|
||||
then
|
||||
echo "apache2 läuft nicht"
|
||||
fehler=1
|
||||
@ -150,7 +150,7 @@ else
|
||||
echo "OK"
|
||||
fi
|
||||
|
||||
if systemctl is-failed openvpn.service
|
||||
if systemctl is-failed openvpn.service > /dev/null 2>&1
|
||||
then
|
||||
echo "openvpn läuft nicht"
|
||||
fehler=1
|
||||
|
Loading…
Reference in New Issue
Block a user