drop secret store logging from install command

This commit is contained in:
Jörg Thalheim
2024-03-17 21:32:23 +01:00
parent ede4d3f6e5
commit 36b788853a

View File

@@ -16,7 +16,6 @@ log = logging.getLogger(__name__)
def install_nixos(machine: Machine, kexec: str | None = None) -> None: def install_nixos(machine: Machine, kexec: str | None = None) -> None:
secrets_module = importlib.import_module(machine.secrets_module) secrets_module = importlib.import_module(machine.secrets_module)
log.info(f"installing {machine.name}") log.info(f"installing {machine.name}")
log.info(f"using secret store: {secrets_module.SecretStore}")
secret_store = secrets_module.SecretStore(machine=machine) secret_store = secrets_module.SecretStore(machine=machine)
h = machine.target_host h = machine.target_host