Merge pull request #599 from bergerc/master

Add missing dependancy on unzip for postwhite.
This commit is contained in:
Antoine Nguyen
2025-09-23 10:12:37 +02:00
committed by GitHub

View File

@@ -20,8 +20,8 @@ class Postwhite(base.Installer):
]
no_daemon = True
packages = {
"deb": ["bind9-host"],
"rpm": ["bind-utils"]
"deb": ["bind9-host", "unzip"],
"rpm": ["bind-utils", "unzip"]
}
def install_from_archive(self, repository, target_dir):