Compare commits
8 Commits
main
...
guix-palve
Author | SHA1 | Date | |
---|---|---|---|
52e7ffc717 | |||
c2c48c52d4 | |||
a98b362cbd | |||
af5729b5f8 | |||
bf4cab8c0d | |||
f0cb131fb6 | |||
8b76060416 | |||
611e7f25a8 |
@ -71,24 +71,23 @@ the tiedote.md user on this system.")
|
||||
(mkdir-p socket-directory)
|
||||
(chown socket-directory uid gid)
|
||||
(make-forkexec-constructor
|
||||
`(#$(file-append tiedote-md "/bin/tiedote.md")
|
||||
(list #$(file-append tiedote-md "/bin/tiedote.md")
|
||||
"--address" #$email-address
|
||||
"--sender-name" #$sender-name
|
||||
"--sendmail" #$sendmail-path
|
||||
"--socket" #$socket-path
|
||||
"server"
|
||||
"--repository" ,repo-path
|
||||
"--repository" repo-path
|
||||
"--port" #$(number->string port)
|
||||
"--remote-url" #$remote-url
|
||||
,@(if #$(maybe-value-set? remote-branch)
|
||||
(list "--remote-branch" #$remote-branch)
|
||||
'()))
|
||||
;,@(if #$(maybe-value-set? remote-branch)
|
||||
; (list "--remote-branch" #$remote-branch)
|
||||
; '())
|
||||
)
|
||||
#:user "tiedote.md"
|
||||
#:group "tiedote.md"
|
||||
#:environment-variables
|
||||
(cons* "GIT_SSL_CAINFO=/etc/ssl/certs/ca-certificates.crt"
|
||||
"LC_ALL=C.utf8"
|
||||
(default-environment-variables))
|
||||
#:environment (cons "GIT_SSL_CAINFO=/etc/ssl/certs/ca-certificates.crt"
|
||||
(default-environment-variable))
|
||||
#:directory #$state-directory))))
|
||||
(stop #~(make-kill-destructor))))))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user