summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guix/fixed-fcgiwrap.scm10
1 files changed, 7 insertions, 3 deletions
diff --git a/guix/fixed-fcgiwrap.scm b/guix/fixed-fcgiwrap.scm
index 573baad..383fa77 100644
--- a/guix/fixed-fcgiwrap.scm
+++ b/guix/fixed-fcgiwrap.scm
@@ -1,7 +1,10 @@
(define-module (fixed-fcgiwrap)
#:use-module (ice-9 match)
+ #:use-module (gnu packages web)
+ #:use-module (gnu services shepherd)
#:use-module (guix modules)
#:use-module (guix records)
+ #:use-module (guix gexp)
#:export (fcgiwrap-configuration
fcgiwrap-service-type))
@@ -12,6 +15,7 @@
;;;
+
(define-record-type* <fcgiwrap-configuration> fcgiwrap-configuration
make-fcgiwrap-configuration
fcgiwrap-configuration?
@@ -108,9 +112,9 @@
((wait-for-file path)
(adjust-permissions path perm)
pid)
- (else #f)))))))
- (_ (start-fcgiwrap)))))
- (stop #~(make-kill-destructor))))
+ (else #f))))
+ (_ (start-fcgiwrap)))))
+ (stop #~(make-kill-destructor)))))))
(define fcgiwrap-accounts