Add missing packages

This commit is contained in:
Spitap
2022-08-05 15:26:39 +02:00
parent f30201d32b
commit 2149b7703f
2 changed files with 2 additions and 1 deletions

View File

@@ -147,7 +147,7 @@ class MySQL(Database):
"""MySQL backend."""
packages = {
"deb": ["mariadb-server"],
"deb": ["mariadb-server", "libmysqlclient-dev"],
"rpm": ["mariadb", "mariadb-devel", "mariadb-server"],
}
service = "mariadb"

View File

@@ -20,6 +20,7 @@ class Postwhite(base.Installer):
]
no_daemon = True
packages = {
"deb": ["bind9-host"],
"rpm": ["bind-utils"]
}