aboutsummaryrefslogtreecommitdiff
path: root/shepherd/init.d/hrdp-project.scm
diff options
context:
space:
mode:
Diffstat (limited to 'shepherd/init.d/hrdp-project.scm')
-rw-r--r--shepherd/init.d/hrdp-project.scm14
1 files changed, 0 insertions, 14 deletions
diff --git a/shepherd/init.d/hrdp-project.scm b/shepherd/init.d/hrdp-project.scm
deleted file mode 100644
index 54ad53a..0000000
--- a/shepherd/init.d/hrdp-project.scm
+++ /dev/null
@@ -1,14 +0,0 @@
-(define hrdp-project
- (make <service>
- #:provides '(hrdp-project)
- #:docstring "Run the hrdp-project web server"
- #:start (make-forkexec-constructor
- '("/var/guix/profiles/per-user/shepherd/current-guix/bin/guix"
- "environment" "--ad-hoc" "hrdp-project" "--"
- "sh" "-c" "$GUIX_ENVIRONMENT/main.py")
- #:log-file "/home/shepherd/logs/hrdp-project.log")
- #:stop (make-kill-destructor)
- #:respawn? #t))
-(register-services hrdp-project)
-
-(start hrdp-project)