View Single Post
  #4   (View Single Post)  
Old 11th May 2017
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,984
Default

The file looks fine. I note you are not running the messagebus daemon, a component of x11/dbus. It is used for communication between X applications and CUPS.

daily(8) is a shell script. It checks for services by issuing rcctl(8) with the parameters "ls failed" to look for services which should be running, but are not.

rcctl(8) is a shell script. The "ls failed" parameters run rc.d(8) "check" commands for all started daemons. For CUPS, it will run # /etc/rc.d/cupsd check. According to rc.subr(8), this will run a pgrep(1) with the $pexp variable. For /etc/rc.d/cupsd, that's "${daemon} .*" or, when expanded, "/usr/local/sbin/cupsd .*"

Last edited by jggimi; 11th May 2017 at 11:28 PM. Reason: typo
Reply With Quote