diff options
author | Oscar Najera <hi@oscarnajera.com> | 2024-12-21 12:30:38 +0100 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2024-12-21 12:30:38 +0100 |
commit | f7193ea090891532ec5e6f2abbd6f805bdfbbf1f (patch) | |
tree | ae3b74fdf024e2e67bd63ddb3a560ca3d1a5331a /config/shepherd/init.d/cmk.scm | |
parent | 1979a19feb55dae81710ac5c00802e39f69365bf (diff) | |
download | dotfiles-f7193ea090891532ec5e6f2abbd6f805bdfbbf1f.tar.gz dotfiles-f7193ea090891532ec5e6f2abbd6f805bdfbbf1f.tar.bz2 dotfiles-f7193ea090891532ec5e6f2abbd6f805bdfbbf1f.zip |
update to shepherd 1.0
Diffstat (limited to 'config/shepherd/init.d/cmk.scm')
-rw-r--r-- | config/shepherd/init.d/cmk.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config/shepherd/init.d/cmk.scm b/config/shepherd/init.d/cmk.scm index 07f32d4..20f7785 100644 --- a/config/shepherd/init.d/cmk.scm +++ b/config/shepherd/init.d/cmk.scm @@ -1,7 +1,8 @@ (register-services - (make <service> - #:docstring "SSH tunnel to ingrid CMK server for socket" - #:provides '(ingrid-cmk) + (list + (service + '(ingrid-cmk) + #:documentation "SSH tunnel to ingrid CMK server for socket" #:start (make-forkexec-constructor (list "ssh" "-NTv" "-o" "ServerAliveInterval=60" @@ -12,4 +13,4 @@ #: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)) + #:respawn? #t))) |