[CentOS] Perl fun part 2

Wed Nov 29 17:46:40 UTC 2017
Pete Biggs <pete at biggs.org.uk>

> Along with the /usr/share/perl5 issues (which I did kinda fix with a 
> manual copy of the directory from another box), we're having an issue 
> with SystemD (go figure) stopping the radiator service, but failing to 
> unbind the ports (1645/1646).  It's complaining about 'killproc' not 
> found.
> 
> Is there a package that's in?  Or how do I get this to work with SystemD 
> properly?  We can't have this thing jacked up like this.
> 

killproc() is a shell function defined in /etc/init.d/functions and
that is provided by the package "initscripts".  The "functions" file is
in effect a library of scripts used by the sysv init scripts and it is
sourced at the top of every file in /etc/init.d  

P.