disable webmin

General eFa discussion
Post Reply
bilias
Posts: 6
Joined: 11 Apr 2017 09:19

disable webmin

Post by bilias »

Hi,

I really don't need and especially don't want to run webmin on my servers.
However even if you disable it (chkconfig) EFA-Monitor-cron will complain about this and will start it again...

One way of fixing this would be to move all config variables from /usr/sbin/EFA-Monitor-cron
to /etc/sysconfig/EFA-Monitor so someone can edit them there
and then include this in the script like

# pull in sysconfig settings
[ -f /etc/sysconfig/EFA-Monitor ] && . /etc/sysconfig/EFA-Monitor

what do you think?

regards,

Giannis
henk
Posts: 517
Joined: 14 Dec 2015 22:16
Location: Netherlands
Contact:

Re: disable webmin

Post by henk »

just remove it from Monitored Service Array:

Code: Select all

vi /usr/sbin/EFA-Monitor-cron

Code: Select all

# Monitored Service Array (daemon=sysv)
#MonitoredServices=("mysqld=mysqld" "MailScanner=MailScanner" "master=postfix" "httpd=httpd" "miniserv.pl=webmin" "clamd=clamd" "unbound=unbound" "saslauthd=saslauthd" "dccifd=adcc")

MonitoredServices=("mysqld=mysqld" "MailScanner=MailScanner" "master=postfix" "httpd=httpd" "clamd=clamd" "unbound=unbound" "saslauthd=saslauthd" "dccifd=adcc")
and disable it (chkconfig)
“We are stuck with technology when what we really want is just stuff that works.” -Douglas Adams
bilias
Posts: 6
Joined: 11 Apr 2017 09:19

Re: disable webmin

Post by bilias »

yes but it will come back on next update...

I was proposing a solution that the user will be able to configure it
Post Reply