diff options
author | EuAndreh <eu@euandre.org> | 2023-03-28 10:42:58 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-28 10:42:58 -0300 |
commit | 85bece5780a5ee315e669e588ac28319b70522e3 (patch) | |
tree | d8c1cf6b9fbffe9dc0de86afd6a53b81a596f438 /src/org/euandre/queue.scm | |
parent | queue.scm: Since Postfix uses start-fg, get rid of the #:pid-file argument (diff) | |
download | package-repository-85bece5780a5ee315e669e588ac28319b70522e3.tar.gz package-repository-85bece5780a5ee315e669e588ac28319b70522e3.tar.xz |
Revert "queue.scm: Since Postfix uses start-fg, get rid of the #:pid-file argument"
This reverts commit ad82613439203f497ae773bcad399d28f71418e7.
Diffstat (limited to 'src/org/euandre/queue.scm')
-rw-r--r-- | src/org/euandre/queue.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/org/euandre/queue.scm b/src/org/euandre/queue.scm index fd57f10..193f430 100644 --- a/src/org/euandre/queue.scm +++ b/src/org/euandre/queue.scm @@ -1191,7 +1191,8 @@ 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"))) + (list #$cmd "-c" #$config-dir "start-fg") + #:pid-file "/var/lib/postfix/master.lock")) (stop #~(make-kill-destructor SIGKILL)) (actions (list |