Skip to content

Commit 71ae259

Browse files
committedMay 6, 2017
nixos: revert changes from 3ab45f4 in taskserver module
See 3ab45f4#commitcomment-22029298. Fixes #25529 (I hope).
1 parent 22cffa0 commit 71ae259

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎nixos/modules/services/misc/taskserver/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ let
128128
certBits = cfg.pki.auto.bits;
129129
clientExpiration = cfg.pki.auto.expiration.client;
130130
crlExpiration = cfg.pki.auto.expiration.crl;
131-
isAutoConfig = boolToString needToCreateCA;
131+
isAutoConfig = if needToCreateCA then "True" else "False";
132132
}}" > "$out/main.py"
133133
cat > "$out/setup.py" <<EOF
134134
from setuptools import setup

0 commit comments

Comments
 (0)
Please sign in to comment.