diff options
Diffstat (limited to 'shepherd')
-rw-r--r-- | shepherd/init.d/ratspub.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/shepherd/init.d/ratspub.scm b/shepherd/init.d/ratspub.scm new file mode 100644 index 0000000..13d20eb --- /dev/null +++ b/shepherd/init.d/ratspub.scm @@ -0,0 +1,18 @@ +(define ratspub + (make <service> + #:provides '(ratspub) + #:docstring "Run the rats.pub web server" + #:start (make-forkexec-constructor + ;(system* "/var/guix/profiles/per-user/shepherd/current-guix/bin/guix" "environment" "--ad-hoc" "ratspub" "--" "./server.py") + '("/home/shepherd/run_ratspub.sh") + ;#:directory (system* "/var/guix/profiles/per-user/shepherd/current-guix/bin/guix" "build" "ratspub") ; returns 0 + #:environment-variables + (list "EDIRECT_PUBMED_MASTER=/export2/PubMed" + "NLTK_DATA=/export2/PubMed/nltk_data" + "PERL_LWP_SSL_CA_FILE=/etc/ssl/certs/ca-certificates.crt") + #:log-file "/home/shepherd/logs/ratspub.log") + #:stop (make-kill-destructor) + #:respawn? #t)) +(register-services ratspub) + +;(start ratspub) |