aboutsummaryrefslogtreecommitdiffstats
path: root/config/shepherd/init.d/cmk.scm
blob: 20f778578fd071b2da22482956e27e260943e8e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(register-services
 (list
  (service
   '(ingrid-cmk)
   #:documentation "SSH tunnel to ingrid CMK server for socket"
   #:start (make-forkexec-constructor
            (list "ssh" "-NTv"
                  "-o" "ServerAliveInterval=60"
                  "-o" "ExitOnForwardFailure=yes"
                  "-o" "StreamLocalBindUnlink=yes"
                  "-L" "6565:/omd/sites/ingrid/tmp/run/live"
                  "ingrid@ingrid")
            #:log-file "/tmp/ingrid-cmk.log"
            #:environment-variables '("SSH_AUTH_SOCK=/run/user/1000/gnupg/S.gpg-agent.ssh"))
   #:stop (make-kill-destructor 2) ;; 2 is SIGINT - interupt process stream, ctrl-C
   #:respawn? #t)))