diff --git a/defaults.inc b/defaults.inc index d9aa240a..1ca24f21 100755 --- a/defaults.inc +++ b/defaults.inc @@ -1,9 +1,9 @@ #!/usr/bin/env bash -VERS='4.3.27-04262023' +VERS='4.3.28-04262023' NODETYPES=LB -# NODETYPES=MYSQL,LB,WEB,NC,WPD,LPD,PW +NODETYPES=MYSQL,LB,WEB,NC,WPD,LPD,PW MYSQLHOSTS=10.10.1.51,10.10.1.52 WEBHOSTS=10.10.1.121,10.10.1.122 LBHOSTS=10.10.10.81,10.10.10.82 diff --git a/nodemgmt-scripts.sh b/nodemgmt-scripts.sh index df6654db..54186eee 100755 --- a/nodemgmt-scripts.sh +++ b/nodemgmt-scripts.sh @@ -561,7 +561,7 @@ STATUS(){ DIVIDER false green fi - [ "${ST_ACTION}" != "check" ] && echo -en " ${idsCL[LightCyan]}Gathering drive data from server ... ${idsCL[Default]}" + [ "${ST_ACTION}" != "check" ] && echo -en " ${idsCL[LightCyan]}Getting drives from server ... ${idsCL[Default]}" declare -A partitions partitions=`${NCMD} df -hBM | grep -vE '^Filesystem|tmpfs|cdrom|loop|overlay|shm|-volume|Music|media-data|Software' | awk '{ print $5 " " $1 }' | while read output; do echo $output | awk '{ print $2 }'; done;` partitions2=`echo ${partitions[*]}`