diff options
author | Clément Lassieur <clement@lassieur.org> | 2018-02-09 01:02:08 +0100 |
---|---|---|
committer | Clément Lassieur <clement@lassieur.org> | 2018-02-22 21:43:53 +0100 |
commit | 301518638fbb2344b523623317bb5cd084e80d44 (patch) | |
tree | a7a7662df1036f460044c31ac58b760b5a8cf948 /gnu | |
parent | 7ab04c17c01a926660cd1c9fa9311a5efc6716da (diff) | |
download | guix-301518638fbb2344b523623317bb5cd084e80d44.tar.gz guix-301518638fbb2344b523623317bb5cd084e80d44.zip |
services: certbot: Fix indentation.
* gnu/services/certbot.scm (certbot-activation): Fix indentation.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/services/certbot.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/services/certbot.scm b/gnu/services/certbot.scm index 1728d126f4..8ca64d9986 100644 --- a/gnu/services/certbot.scm +++ b/gnu/services/certbot.scm @@ -80,8 +80,8 @@ (($ <certbot-configuration> package webroot hosts default-location) (with-imported-modules '((guix build utils)) #~(begin - (use-modules (guix build utils)) - (mkdir-p #$webroot) + (use-modules (guix build utils)) + (mkdir-p #$webroot) (for-each (lambda (host) (unless (file-exists? (in-vicinity "/etc/letsencrypt/live" host)) |