diff options
| author | Rutherther <rutherther@ditigal.xyz> | 2025-12-11 21:37:41 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2025-12-13 14:02:08 +0100 |
| commit | 6935e6c51d6423ecfca7a775280da3ae16a2713b (patch) | |
| tree | a6f8683a8cd47c73f622db3c184464072fca7f8d /gnu | |
| parent | 224abdac10535b6a204121956c4b30aba6f380bb (diff) | |
services: postgres: Return #f on stop.
Shepherd expects #f to know the service has stopped.
* gnu/services/databases.scm (postgresql-shepherd-service): Return #f
on stop.
Change-Id: Ie5c45efc7eef75c325ddfd0ef197b306c7b60e5b
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/services/databases.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/databases.scm b/gnu/services/databases.scm index 945964c045f..f507727e5c3 100644 --- a/gnu/services/databases.scm +++ b/gnu/services/databases.scm @@ -344,7 +344,7 @@ host all all ::1/128 md5")) (match '#$args (("start") (call-with-input-file #$pid-file read)) - (_ #t)))))) + (_ #f)))))) (list (shepherd-service (provision '(postgres postgresql)) (documentation "Run the PostgreSQL daemon.") |
