aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/shepherd/init.d/bitcoin.scm3
-rw-r--r--elisp/shepherd.el2
2 files changed, 2 insertions, 3 deletions
diff --git a/config/shepherd/init.d/bitcoin.scm b/config/shepherd/init.d/bitcoin.scm
index d576eef..e638bef 100644
--- a/config/shepherd/init.d/bitcoin.scm
+++ b/config/shepherd/init.d/bitcoin.scm
@@ -34,10 +34,9 @@
#:provides '(lnd-testnet)
#:start (make-forkexec-constructor
(list "lnd"
- "--lnddir=/run/media/titan/ext_backup/personal/bitcoin/lnd/"
+ "--lnddir=/mnt/disk/personal/bitcoin/lnd/"
"--noseedbackup"))
#:stop (make-kill-destructor 2) ;; 2 is SIGINT - interupt process stream, ctrl-C
- #:requires '(bitcoin-testnet)
#:respawn? #t))
;; Mainnet
diff --git a/elisp/shepherd.el b/elisp/shepherd.el
index 1141d31..48a1aa8 100644
--- a/elisp/shepherd.el
+++ b/elisp/shepherd.el
@@ -63,7 +63,7 @@
`(,name .
(lambda (service)
(message (shepherd-command ,name service))))))
- '(status start stop restart enable)))))
+ '(start status stop restart enable)))))
(provide 'shepherd)
;;; shepherd.el ends here