aboutsummaryrefslogtreecommitdiff
path: root/shepherd/init.d/ipfs.scm
diff options
context:
space:
mode:
Diffstat (limited to 'shepherd/init.d/ipfs.scm')
-rw-r--r--shepherd/init.d/ipfs.scm12
1 files changed, 0 insertions, 12 deletions
diff --git a/shepherd/init.d/ipfs.scm b/shepherd/init.d/ipfs.scm
deleted file mode 100644
index 1b8d21a..0000000
--- a/shepherd/init.d/ipfs.scm
+++ /dev/null
@@ -1,12 +0,0 @@
-(define ipfs
- (make <service>
- #:provides '(ipfs)
- #:docstring "Run the IPFS daemon"
- #:start (make-forkexec-constructor
- '("/usr/bin/sudo" "/home/shepherd/run_ipfs.sh")
- #:log-file "/home/shepherd/logs/ipfs.log")
- #:stop (make-kill-destructor)
- #:respawn? #t))
-(register-services ipfs)
-
-(start ipfs)