Demo Discussion
Forum Config Examples Contributions Vulnerabilities
  Discussion forum about ELOG  Not logged in ELOG logo
icon1.gif   Installation problems, posted by George B. on Mon Oct 27 13:05:13 2008 
    icon2.gif   Re: Installation problems, posted by Stefan Ritt on Wed Oct 29 05:53:39 2008 
       icon2.gif   Re: Installation problems, posted by George B. on Wed Nov 5 10:32:07 2008 
       icon3.gif   Re: Installation problems, posted by T. Ribbrock on Wed Nov 5 11:52:12 2008 elog
          icon4.gif   elog init script, posted by Yoshio Imai on Mon Nov 10 13:05:21 2008 
          icon2.gif   Re: Installation problems, posted by Stefan Ritt on Mon Nov 17 11:42:46 2008 
             icon2.gif   Re: Installation problems, posted by T. Ribbrock on Thu Nov 27 11:47:34 2008 
Message ID: 66037     Entry time: Mon Nov 10 13:05:21 2008     In reply to: 66034
Icon: Warning  Author: Yoshio Imai  Author Email:  
Category: Info  OS: Linux  ELOG Version: 2.7.5 
Subject: elog init script 
Notice that the following is not true when editing the config file outside of the administrator's "Config" page:
	reload)
		# Do nothing since ELOG daemon responds to 
		# the changes in conffile directly.
		;;

In our installation, the sysadmin has therefore added the following section for the reload) part of the init script:
    reload)
        if [ -f $PIDFILE ]; then
            echo -n "$DESC to reread config file ... "
            kill -HUP `cat "$PIDFILE"`
            echo "done"
        else
            echo "No $PIDFILE found!"
        fi
        ;;
ELOG V3.1.5-fe60aaf