Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens Langhammer 2023-04-24 16:23:22 +03:00
parent 609e9a00b4
commit bc6d66cd88
No known key found for this signature in database
1 changed files with 7 additions and 6 deletions

View File

@ -32,12 +32,13 @@ class DockerInlineSSH:
self.host = host self.host = host
self.keypair = keypair self.keypair = keypair
self.config_path = SSH_CONFIG_DIR / Path(self.host + ".conf") self.config_path = SSH_CONFIG_DIR / Path(self.host + ".conf")
if not open(self.config_path, "w").writable(): with open(self.config_path, "w", encoding="utf-8") as _config:
# SSH Config file already exists and there's no header from us, meaning that it's if not _config.writable():
# been externally mapped into the container for more complex configs # SSH Config file already exists and there's no header from us, meaning that it's
raise SSHManagedExternallyException( # been externally mapped into the container for more complex configs
"SSH Config exists and does not contain authentik header" raise SSHManagedExternallyException(
) "SSH Config exists and does not contain authentik header"
)
if not self.keypair: if not self.keypair:
raise DockerException("keypair must be set for SSH connections") raise DockerException("keypair must be set for SSH connections")