17 lines
234 B
Plaintext
17 lines
234 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
#set -e
|
||
|
. /usr/lib/eole/diagnose.sh
|
||
|
EchoGras "*** Service de statistique réseau"
|
||
|
|
||
|
if [ "$(CreoleGet activer_vnstat)" = "oui" ]; then
|
||
|
TestPid vnStat vnstatd
|
||
|
echo
|
||
|
vnstat
|
||
|
else
|
||
|
Inactif vnStat
|
||
|
fi
|
||
|
|
||
|
echo
|
||
|
exit 0
|