blob: 6a985cada78ef537c31271d66c2207faa2c63ee7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
(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)
#:respawn? #t))
(register-services pluto)
(start pluto)
|