From 837dda2b694ccbfeed51691796650a87b371f135 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sat, 16 Dec 2023 14:58:10 -0600 Subject: [PATCH] Update nodemgmt-scripts.sh --- nodemgmt-scripts.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nodemgmt-scripts.sh b/nodemgmt-scripts.sh index 385b8953..573782fd 100755 --- a/nodemgmt-scripts.sh +++ b/nodemgmt-scripts.sh @@ -1127,9 +1127,12 @@ GUI(){ ;; nginxupdate) + echo for nfile in ${NM_NGINXPATH}/sites-enabled/*.conf; do + echo -en "Converting site: ${nfile##*/} ... " mv -f ${nfile} ${NM_NGINXPATH}/sites-available/${nfile##*/} ln -s ${NM_NGINXPATH}/sites-available/${nfile##*/} ${nfile} + echo "Done" done ;;