nixos/taskserver: Fix manual PKI management

The helper tool had a very early check whether the automatically created
CA key/cert are available and thus it would abort if the key was
unavailable even though we don't need or even want to have the CA key.

Unfortunately our NixOS test didn't catch this, because it was just
switching from a configuration with an automatically created CA to a
manual configuration without deleting the generated keys and certs.

This is done now in the tests and it's also fixed in the helper tool.

Reported-by: @jpotier
Signed-off-by: aszlig <aszlig@redmoonstudios.org>

aszlig b6188438 5d29744f

Changed files
+6
nixos
modules
services
misc
taskserver
tests
+2
nixos/modules/services/misc/taskserver/helper-tool.py
···
"""
Manage Taskserver users and certificates
"""
for path in (CA_KEY, CA_CERT, CRL_FILE):
if not os.path.exists(path):
msg = "CA setup not done or incomplete, missing file {}."
···
"""
Manage Taskserver users and certificates
"""
+
if not IS_AUTO_CONFIG:
+
return
for path in (CA_KEY, CA_CERT, CRL_FILE):
if not os.path.exists(path):
msg = "CA setup not done or incomplete, missing file {}."
+4
nixos/tests/taskserver.nix
···
};
subtest "check manual configuration", sub {
$server->succeed('${switchToNewServer} >&2');
$server->waitForUnit("taskserver.service");
$server->waitForOpenPort(${portStr});
···
};
subtest "check manual configuration", sub {
+
# Remove the keys from automatic CA creation, to make sure the new
+
# generation doesn't use keys from before.
+
$server->succeed('rm -rf ${cfg.dataDir}/keys/* >&2');
+
$server->succeed('${switchToNewServer} >&2');
$server->waitForUnit("taskserver.service");
$server->waitForOpenPort(${portStr});