diff options
| author | Paul Buetow <paul@buetow.org> | 2011-05-13 14:30:51 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2011-05-13 14:30:51 +0000 |
| commit | e49102eea89f9f7b44945401882e7284b593f7cf (patch) | |
| tree | a5f7888486cc71410a813a1102eef50383ab4dce /README | |
| parent | de172f7b7af3261e8758d9b597abd5f2379ca9f8 (diff) | |
added initial README file
plus some other stuff
Diffstat (limited to 'README')
| -rw-r--r-- | README | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -0,0 +1,27 @@ +HELLO WORLD + +RunModuleemon is a minimal linux/unix daemon programmed in Perl. +It can be extended to fit any task... + +It supports: +* Automatic daemonizing +* Logging and logrotate support (SIGHUP) +* Clean shutdown support (SIGTERM) +* Pidfile support (incl. check on startup) +* Easy to configure +* Easy to extend (writing your own modules within PerlDaemonModules::) + +QUICK START GUIDE: + +# Starting +./bin/perldaemon start + +# Stopping +./bin/perldaemon stop + +# Writing your own modules: +cd ./lib/PerlDaemonModules/ +cp ExampleModule.pm YourModule.pm +vi YourModule.pm +cd - +./bin/perldaemon restart |
