# Copyright 2018-2023 Chris Croome # # This file is part of the Webarchitects Fail2ban Ansible role. # # The Webarchitects Fail2ban Ansible role is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. # # The Webarchitects Fail2ban Ansible role is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with the Webarchitects Fail2ban Ansible role. If not, see <https://www.gnu.org/licenses/>. --- variables: ANSIBLE_ANY_ERRORS_FATAL: "1" ANSIBLE_CALLBACK_RESULT_FORMAT: "yaml" ANSIBLE_DIFF_ALWAYS: "1" ANSIBLE_DISPLAY_SKIPPED_HOSTS: "0" ANSIBLE_ERROR_ON_UNDEFINED_VARS: "1" ANSIBLE_FORCE_COLOR: "1" ANSIBLE_INJECT_FACT_VARS: "0" ANSIBLE_REMOTE_TMP: "/tmp" ANSIBLE_SHELL_ALLOW_WORLD_READABLE_TEMP: "1" DEBIAN_FRONTEND: noninteractive DEFAULT_MANAGED_STR: "Ansible managed" MOLECULE_VERBOSITY: "0" PRE_COMMIT_COLOR: always PY_COLORS: "1" before_script: - whoami - pwd - chmod 700 $(pwd) - which ansible - ansible --version - which yamllint - yamllint --version - which molecule - molecule --version - touch /var/log/auth.log stages: - bookworm - jammy - noble - trixie bookworm: image: registry.git.coop/webarch/containers/images/bookworm:20241107 stage: bookworm script: - molecule test jammy: image: registry.git.coop/webarch/containers/images/jammy:20241107 stage: jammy script: - molecule test noble: image: registry.git.coop/webarch/containers/images/noble:20241107 stage: noble script: - molecule test trixie: image: registry.git.coop/webarch/containers/images/trixie:20241107 stage: trixie script: - molecule test ...