From 7980a828414d5fad8866bf39b63459ae82f97819 Mon Sep 17 00:00:00 2001 From: Faustin Lammler Date: Tue, 2 Sep 2025 11:57:21 +0200 Subject: [PATCH] Mariabackup is fixed on Alpine 3.19, 3.20 and 3.21 See: https://gitlab.alpinelinux.org/alpine/aports/-/issues/16956 --- molecule/default/verify.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/molecule/default/verify.yml b/molecule/default/verify.yml index 759a13e..4445c80 100644 --- a/molecule/default/verify.yml +++ b/molecule/default/verify.yml @@ -142,12 +142,6 @@ - name: Check if backup is working (mariadb-backup) ansible.builtin.shell: | - # segfault before 3.22 on Alpine Linux, Ansible facts comparison are not - # powerful enough so "when" is not used here - source /etc/os-release - if [ "$ID" == "alpine" ] && [ "${VERSION_ID:2:2}" -lt "22" ]; then - exit 0 - fi mkdir /tmp/backup if command -v mariadb-backup >/dev/null; then MARIADB_BACKUP="mariadb-backup"