diff options
author | EuAndreh <eu@euandre.org> | 2023-03-27 15:45:14 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-27 15:45:14 -0300 |
commit | ad82613439203f497ae773bcad399d28f71418e7 (patch) | |
tree | 6bd2658fc07194cb5eaa0322eda473119d67e258 | |
parent | src/bin/paku.in: Simplify emission of Debian makefile (diff) | |
download | package-repository-ad82613439203f497ae773bcad399d28f71418e7.tar.gz package-repository-ad82613439203f497ae773bcad399d28f71418e7.tar.xz |
queue.scm: Since Postfix uses start-fg, get rid of the #:pid-file argument
-rw-r--r-- | src/org/euandre/queue.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/org/euandre/queue.scm b/src/org/euandre/queue.scm index 193f430..fd57f10 100644 --- a/src/org/euandre/queue.scm +++ b/src/org/euandre/queue.scm @@ -1191,8 +1191,7 @@ This is the entrypoint for starting the \"master\" process. Then the \"master\" process itself takes responsability of starting all the required daemons and commands.") (start #~(make-forkexec-constructor - (list #$cmd "-c" #$config-dir "start-fg") - #:pid-file "/var/lib/postfix/master.lock")) + (list #$cmd "-c" #$config-dir "start-fg"))) (stop #~(make-kill-destructor SIGKILL)) (actions (list |