Kate Parkhurst
Kate Parkhurst
What you did: Installed it and have started playing around with it... this is *awesome*, thank you so much for developing it and putting it out there! Problem description: There...
- Use Role::Tiny to compose a class with roles via ->with_plugins - `with_plugins` requires Role::Tiny, otherwise it's not a D::C dep - Plugins MUST depend on Role::Tiny, and get composed...
``` $ sudo service httpd status httpd is stopped $ echo $? 3 $ sudo my_daemon status my_daemon [Not Running] $ echo $? 0 ``` The exit cods for status...
When dropping from root -> some_web_user with a local lib, it may save someone a few minutes if we document adding `use local::lib 'wherever'`. Or maybe I'm just slow.
`perl -MDaemon::Control -e'mk_init "script_name.pl", "Application Name"';` should generate a new script that looks like this: ``` perl #!/usr/bin/perl use warnings; use strict; use Daemon::Control; Daemon::Control->new({ name => "Application Name", lsb_start...