Skip to content
This repository was archived by the owner on Jan 22, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions check_glusterfs
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,15 @@ PATH=/sbin:/bin:/usr/sbin:/usr/bin

PROGNAME=$(basename -- $0)
PROGPATH=`echo $0 | sed -e 's,[\\/][^\\/][^\\/]*$,,'`
REVISION="1.0.1"

. $PROGPATH/utils.sh
REVISION="1.0.3"

if [ -f $PROGPATH/utils.sh ]
then
. $PROGPATH/utils.sh
else
echo "Fatal error, missing $PROGPATH/utils.sh"
exit 1
fi

# parse command line
usage () {
Expand Down