This commit is contained in:
2022-12-31 17:24:09 -06:00
parent 9bb76c42ee
commit cdceeed72c
2 changed files with 4 additions and 3 deletions

View File

@@ -84,6 +84,7 @@ NM_SERVICES['mariadb']='MariaDB (MySQL)'
NM_SERVICES['postgresql']='PostgreSQL'
NM_SERVICES['apache2']='Apache Web Server'
NM_SERVICES['nginx']='NGINX Web Server'
NM_SERVICES['nginxproxy']='NGINX Proxy Manager'
NM_SERVICES['gogs']='Gogs Git Repository'
NM_SERVICES['gitea']='Gitea Git Repository'
NM_SERVICES['haproxy']='HAProxy Load Balancer'

View File

@@ -2245,8 +2245,8 @@ DOWNLIST(){
idsST=('')
fi
declare -i cw; declare -i spc1; declare -i c
#rm -f /tmp/ssllist
#for downitem in /opt/idssys/nodemgmt/*.down ; do echo $downitem; done > /tmp/downlist
DOWN_LIST=`find /opt/idssys/nodemgmt -name "*.down"`
if [ -z $action ] || [ "${action}" = "gui" ]; then
DIVIDER true
fi
@@ -2259,7 +2259,7 @@ DOWNLIST(){
cw=30; cw2=48
# for downitem in $(</tmp/downlist); do
for downitem in `find /opt/idssys/nodemgmt -name "*.down"`; do
for downitem in ${DOWN_LIST}; do
ditem=${downitem##*/}
ditem=${ditem//.down}
host=${ditem%%-*}