Update install-dsmon.sh

This commit is contained in:
2023-07-06 20:35:33 -05:00
parent 4687dbc15a
commit 728a85c984

View File

@@ -13,8 +13,8 @@ echo -e "${idsCL[LightGreen]}DiskSpace-Monitor Installation Script${idsCL[Defaul
echo ""
if [ -d "/opt/idssys/dsmon" ]; then
echo -en "${idsCL[Red]}DiskSpace-Monitor is already installed, would you like to re-install (y/n)?${idsCL[Default]}"
read -n 1 reinstall
echo -en "${idsCL[Yellow]}DiskSpace-Monitor is already installed, would you like to re-install (y/n)? ${idsCL[Default]}"
read reinstall
case $reinstall in
[Yy]) uninstall=$(`bash <(curl -sL https://git.schroedercity.com/voltron/Misc-Scripts/raw/branch/master/uninstall-dsmon.sh)`);;
*) EXIT1;;