diff options
Diffstat (limited to 'shepherd')
-rw-r--r-- | shepherd/init.d/pluto.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shepherd/init.d/pluto.scm b/shepherd/init.d/pluto.scm new file mode 100644 index 0000000..dc36730 --- /dev/null +++ b/shepherd/init.d/pluto.scm @@ -0,0 +1,14 @@ +(define pluto + (make <service> + #:provides '(pluto) + #:docstring "Run a pluto web server" + #:start (make-forkexec-constructor + '("/home/shepherd/run_pluto.sh") + #:log-file "/home/shepherd/logs/pluto.log") + #:stop (make-kill-destructor) + ;; currently running in a screen session + #:auto-start? #f + #:respawn? #t)) +(register-services pluto) + +(start pluto) |