From b589b44e418d833874ed84d4beb8847b780a7c97 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Sun, 31 May 2020 06:42:02 +0200 Subject: cloud install: differnet kernel packages and no firmwares for virtual machines --- roles/cloud/install/templates/hetzner_postinst.sh.j2 | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) (limited to 'roles/cloud/install/templates') diff --git a/roles/cloud/install/templates/hetzner_postinst.sh.j2 b/roles/cloud/install/templates/hetzner_postinst.sh.j2 index df1565c7..613f57ac 100644 --- a/roles/cloud/install/templates/hetzner_postinst.sh.j2 +++ b/roles/cloud/install/templates/hetzner_postinst.sh.j2 @@ -7,13 +7,21 @@ OS_MAJOR_VERSION=$(. /etc/os-release; echo $VERSION_ID | cut -d . -f 1) export DEBIAN_FRONTEND=noninteractive apt-get update -q apt-get full-upgrade -y -q -apt-get install -y -q --no-install-recommends openssh-server -if [ "$OS_DISTRO" == "ubuntu" ] && [ "$OS_MAJOR_VERSION" -ge 20 ]; then - apt-get install -y -q --no-install-recommends python3 python3-apt -else - apt-get install -y -q --no-install-recommends python python-apt -fi +PYTHON_BASENAME="python" +if [ "$OS_DISTRO" == "ubuntu" ]; then + if [ "$OS_MAJOR_VERSION" -ge 20 ]; then PYTHON_BASENAME="python3"; fi +{% if cloud_provider == 'hcloud' %} + apt-get install -y -q --no-install-recommends linux-image-virtual + apt-get purge -y -q linux-image-generic intel-microcode amd64-microcode iucode-tool linux-firmware +{% endif %} +elif [ "$OS_DISTRO" == "debian" ]; then + if [ "$OS_MAJOR_VERSION" -ge 11 ]; then PYTHON_BASENAME="python3"; fi +{% if cloud_provider == 'hcloud' %} + apt-get purge -y -q intel-microcode amd64-microcode iucode-tool firmware-bnx2x firmware-realtek firmware-linux firmware-linux-free firmware-linux-nonfree +{% endif %} +fi +apt-get install -y -q --no-install-recommends openssh-server "$PYTHON_BASENAME" "$PYTHON_BASENAME-apt" passwd -d root && passwd -l root {% if install_distro == "debian" %} -- cgit v1.2.3