patch to /etc/init.d/ez-ipupdate on CentOS7/RHEL7
Brought to you by:
storem
*** /etc/init.d/ez-ipupdate 2017-08-28 18:25:59.321499473 -0400
--- /etc/init.d/ez-ipupdate.patched 2017-03-21 10:59:00.000000000 -0400
*************** ez_bin=/usr/sbin/ez-ipupdate
*** 21,26 ****
--- 21,29 ----
# Make sure relevant files exist
[ -x "$ez_bin" -a -d "$ez_configdir" ] || exit 0
+ # make ez_piddir if needed
+ [ -d "$ez_piddir" ] || ( mkdir -p ${ez_piddir} && chown ez-ipupd. ${ez_piddir} )
+
# Source function library.
. /etc/rc.d/init.d/functions
Hope this helps.