about summary refs log tree commit diff
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, 12 insertions, 0 deletions
diff --git a/shepherd/init.d/ipfs.scm b/shepherd/init.d/ipfs.scm
new file mode 100644
index 0000000..1b8d21a
--- /dev/null
+++ b/shepherd/init.d/ipfs.scm
@@ -0,0 +1,12 @@
+(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)