2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

Reverted to awk to extract database name

This commit is contained in:
Johann Schmitz 2015-01-30 13:40:26 +01:00
parent 66c38543c7
commit c1abcd6bc5

View File

@ -47,7 +47,7 @@ EOM
exit 0;;
esac
db=${0/firebird_/}
db=$(echo $0 | awk -F'_' '{print $2}')
gstat=$(which gstat 2> /dev/null)