├── .ansible-lint ├── .editorconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── bug_report.md.license │ ├── feature_request.md │ └── feature_request.md.license ├── dependabot.yml ├── labeler.yml └── workflows │ ├── gitlab.yml │ ├── gitlab_runner.yml │ ├── haproxy.yml │ ├── import-galaxy-test.yml │ ├── keepalived.yml │ ├── labeler.yml │ ├── lint.yml │ ├── netplan.yml │ ├── prepare-action │ └── action.yml │ ├── redis.yml │ ├── release.yml │ ├── reuse-compliance.yml │ ├── ssh_keys.yml │ ├── unattended_upgrades.yml │ └── zammad.yml ├── .github_changelog_generator ├── .gitignore ├── .python-version ├── .python-version.license ├── .yamllint.yml ├── CHANGELOG.md ├── CHANGELOG.md.license ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE.md ├── LICENSES ├── Apache-2.0.txt ├── GPL-2.0-or-later.txt └── MIT.txt ├── README.md ├── UNATTENDED_UPGRADES_CHANGELOG.md ├── galaxy.yml ├── meta └── runtime.yml ├── molecule ├── gitlab │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── gitlab_runner │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ ├── requirements.yml │ ├── test_key │ ├── test_key.license │ ├── test_key.pub │ ├── test_key.pub.license │ └── verify.yml ├── haproxy │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ ├── test.pem │ ├── test.pem.license │ └── verify.yml ├── keepalived │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── netplan │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── redis │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── ssh_keys │ ├── converge.yml │ ├── molecule.yml │ ├── requirements.yml │ └── verify.yml ├── unattended_upgrades │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml └── zammad │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ ├── requirements.yml │ └── verify.yml ├── pyproject.toml ├── requirements.yml ├── roles ├── gitlab │ ├── .ansible-lint │ ├── CHANGELOG.md │ ├── GITLAB_BASE_HISTORY.md │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── check.yml │ │ ├── configure.yml │ │ ├── feature-flag.yml │ │ ├── install.yml │ │ ├── main.yml │ │ └── reconfigure.yml │ ├── templates │ │ └── gitlab.rb.j2 │ └── vars │ │ ├── AlmaLinux.yml │ │ ├── CentOS.yml │ │ ├── Debian.yml │ │ └── Ubuntu.yml ├── gitlab_runner │ ├── CHANGELOG.md │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── requirements.yml │ ├── tasks │ │ ├── configuration.yml │ │ ├── docker-machine-init.yml │ │ ├── install.autoscaler-plugin.yml │ │ ├── install.debianlike.yml │ │ ├── install.docker-machine.yml │ │ └── main.yml │ ├── templates │ │ ├── butane-config.bu.j2 │ │ ├── clouds.yaml.j2 │ │ ├── config.toml.j2 │ │ ├── pin-gitlab-runner.pref.j2 │ │ └── runner_config.j2 │ └── vars │ │ └── debian.yml ├── haproxy │ ├── CHANGELOG.md │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── haproxy.cfg.j2 ├── keepalived │ ├── CHANGELOG.md │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ ├── keepalived.conf.j2 │ │ └── keepalived.service.j2 ├── netplan │ ├── CHANGELOG.md │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── config.yaml.j2 ├── redis │ ├── CHANGELOG.md │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ ├── redis-sentinel.service.j2 │ │ ├── redis-server.service.j2 │ │ ├── redis.conf.j2 │ │ └── sentinel.conf.j2 ├── ssh_keys │ ├── CHANGELOG.md │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── unattended_upgrades │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── main.yml │ │ ├── reboot.yml │ │ ├── systemd_timers.yml │ │ ├── systemd_timers_remove.yml │ │ └── unattended-upgrades.yml │ ├── templates │ │ ├── apt_daily_override.conf.j2 │ │ ├── apt_daily_upgrade_override.conf.j2 │ │ └── unattended-upgrades.j2 │ └── vars │ │ ├── Debian-buster.yml │ │ ├── Debian.yml │ │ ├── Ubuntu.yml │ │ └── main.yml └── zammad │ ├── CHANGELOG.md │ ├── README.md │ ├── defaults │ └── main.yml │ ├── handlers │ └── main.yml │ ├── meta │ └── main.yml │ ├── tasks │ ├── install.yml │ ├── main.yml │ ├── nginx-config.yml │ └── ssl.yml │ └── templates │ └── nginx-zammad.conf.j2 ├── uv.lock └── uv.lock.license /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md.license -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md.license -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/gitlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/gitlab.yml -------------------------------------------------------------------------------- /.github/workflows/gitlab_runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/gitlab_runner.yml -------------------------------------------------------------------------------- /.github/workflows/haproxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/haproxy.yml -------------------------------------------------------------------------------- /.github/workflows/import-galaxy-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/import-galaxy-test.yml -------------------------------------------------------------------------------- /.github/workflows/keepalived.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/keepalived.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/netplan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/netplan.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/prepare-action/action.yml -------------------------------------------------------------------------------- /.github/workflows/redis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/redis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/reuse-compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/reuse-compliance.yml -------------------------------------------------------------------------------- /.github/workflows/ssh_keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/ssh_keys.yml -------------------------------------------------------------------------------- /.github/workflows/unattended_upgrades.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/unattended_upgrades.yml -------------------------------------------------------------------------------- /.github/workflows/zammad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github/workflows/zammad.yml -------------------------------------------------------------------------------- /.github_changelog_generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.github_changelog_generator -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /.python-version.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.python-version.license -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/CHANGELOG.md.license -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/LICENSES/GPL-2.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /UNATTENDED_UPGRADES_CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/UNATTENDED_UPGRADES_CHANGELOG.md -------------------------------------------------------------------------------- /galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/galaxy.yml -------------------------------------------------------------------------------- /meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/meta/runtime.yml -------------------------------------------------------------------------------- /molecule/gitlab/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/gitlab/converge.yml -------------------------------------------------------------------------------- /molecule/gitlab/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/gitlab/molecule.yml -------------------------------------------------------------------------------- /molecule/gitlab/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/gitlab/prepare.yml -------------------------------------------------------------------------------- /molecule/gitlab/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/gitlab/verify.yml -------------------------------------------------------------------------------- /molecule/gitlab_runner/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/gitlab_runner/converge.yml -------------------------------------------------------------------------------- /molecule/gitlab_runner/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/gitlab_runner/molecule.yml -------------------------------------------------------------------------------- /molecule/gitlab_runner/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/gitlab_runner/prepare.yml -------------------------------------------------------------------------------- /molecule/gitlab_runner/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/gitlab_runner/requirements.yml -------------------------------------------------------------------------------- /molecule/gitlab_runner/test_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/gitlab_runner/test_key -------------------------------------------------------------------------------- /molecule/gitlab_runner/test_key.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/gitlab_runner/test_key.license -------------------------------------------------------------------------------- /molecule/gitlab_runner/test_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/gitlab_runner/test_key.pub -------------------------------------------------------------------------------- /molecule/gitlab_runner/test_key.pub.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/gitlab_runner/test_key.pub.license -------------------------------------------------------------------------------- /molecule/gitlab_runner/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/gitlab_runner/verify.yml -------------------------------------------------------------------------------- /molecule/haproxy/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/haproxy/converge.yml -------------------------------------------------------------------------------- /molecule/haproxy/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/haproxy/molecule.yml -------------------------------------------------------------------------------- /molecule/haproxy/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/haproxy/prepare.yml -------------------------------------------------------------------------------- /molecule/haproxy/test.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/haproxy/test.pem -------------------------------------------------------------------------------- /molecule/haproxy/test.pem.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/haproxy/test.pem.license -------------------------------------------------------------------------------- /molecule/haproxy/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/haproxy/verify.yml -------------------------------------------------------------------------------- /molecule/keepalived/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/keepalived/converge.yml -------------------------------------------------------------------------------- /molecule/keepalived/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/keepalived/molecule.yml -------------------------------------------------------------------------------- /molecule/keepalived/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/keepalived/prepare.yml -------------------------------------------------------------------------------- /molecule/keepalived/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/keepalived/verify.yml -------------------------------------------------------------------------------- /molecule/netplan/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/netplan/converge.yml -------------------------------------------------------------------------------- /molecule/netplan/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/netplan/molecule.yml -------------------------------------------------------------------------------- /molecule/netplan/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/netplan/prepare.yml -------------------------------------------------------------------------------- /molecule/netplan/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/netplan/verify.yml -------------------------------------------------------------------------------- /molecule/redis/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/redis/converge.yml -------------------------------------------------------------------------------- /molecule/redis/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/redis/molecule.yml -------------------------------------------------------------------------------- /molecule/redis/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/redis/prepare.yml -------------------------------------------------------------------------------- /molecule/redis/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/redis/verify.yml -------------------------------------------------------------------------------- /molecule/ssh_keys/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/ssh_keys/converge.yml -------------------------------------------------------------------------------- /molecule/ssh_keys/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/ssh_keys/molecule.yml -------------------------------------------------------------------------------- /molecule/ssh_keys/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/ssh_keys/requirements.yml -------------------------------------------------------------------------------- /molecule/ssh_keys/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/ssh_keys/verify.yml -------------------------------------------------------------------------------- /molecule/unattended_upgrades/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/unattended_upgrades/converge.yml -------------------------------------------------------------------------------- /molecule/unattended_upgrades/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/unattended_upgrades/molecule.yml -------------------------------------------------------------------------------- /molecule/unattended_upgrades/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/unattended_upgrades/prepare.yml -------------------------------------------------------------------------------- /molecule/unattended_upgrades/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/unattended_upgrades/verify.yml -------------------------------------------------------------------------------- /molecule/zammad/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/zammad/converge.yml -------------------------------------------------------------------------------- /molecule/zammad/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/zammad/molecule.yml -------------------------------------------------------------------------------- /molecule/zammad/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/zammad/prepare.yml -------------------------------------------------------------------------------- /molecule/zammad/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/zammad/requirements.yml -------------------------------------------------------------------------------- /molecule/zammad/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/molecule/zammad/verify.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/requirements.yml -------------------------------------------------------------------------------- /roles/gitlab/.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/.ansible-lint -------------------------------------------------------------------------------- /roles/gitlab/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/CHANGELOG.md -------------------------------------------------------------------------------- /roles/gitlab/GITLAB_BASE_HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/GITLAB_BASE_HISTORY.md -------------------------------------------------------------------------------- /roles/gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/README.md -------------------------------------------------------------------------------- /roles/gitlab/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/defaults/main.yml -------------------------------------------------------------------------------- /roles/gitlab/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/handlers/main.yml -------------------------------------------------------------------------------- /roles/gitlab/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/meta/main.yml -------------------------------------------------------------------------------- /roles/gitlab/tasks/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/tasks/check.yml -------------------------------------------------------------------------------- /roles/gitlab/tasks/configure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/tasks/configure.yml -------------------------------------------------------------------------------- /roles/gitlab/tasks/feature-flag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/tasks/feature-flag.yml -------------------------------------------------------------------------------- /roles/gitlab/tasks/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/tasks/install.yml -------------------------------------------------------------------------------- /roles/gitlab/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/tasks/main.yml -------------------------------------------------------------------------------- /roles/gitlab/tasks/reconfigure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/tasks/reconfigure.yml -------------------------------------------------------------------------------- /roles/gitlab/templates/gitlab.rb.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/templates/gitlab.rb.j2 -------------------------------------------------------------------------------- /roles/gitlab/vars/AlmaLinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/vars/AlmaLinux.yml -------------------------------------------------------------------------------- /roles/gitlab/vars/CentOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/vars/CentOS.yml -------------------------------------------------------------------------------- /roles/gitlab/vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/vars/Debian.yml -------------------------------------------------------------------------------- /roles/gitlab/vars/Ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab/vars/Ubuntu.yml -------------------------------------------------------------------------------- /roles/gitlab_runner/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/CHANGELOG.md -------------------------------------------------------------------------------- /roles/gitlab_runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/README.md -------------------------------------------------------------------------------- /roles/gitlab_runner/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/defaults/main.yml -------------------------------------------------------------------------------- /roles/gitlab_runner/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/handlers/main.yml -------------------------------------------------------------------------------- /roles/gitlab_runner/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/meta/main.yml -------------------------------------------------------------------------------- /roles/gitlab_runner/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/requirements.yml -------------------------------------------------------------------------------- /roles/gitlab_runner/tasks/configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/tasks/configuration.yml -------------------------------------------------------------------------------- /roles/gitlab_runner/tasks/docker-machine-init.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/tasks/docker-machine-init.yml -------------------------------------------------------------------------------- /roles/gitlab_runner/tasks/install.autoscaler-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/tasks/install.autoscaler-plugin.yml -------------------------------------------------------------------------------- /roles/gitlab_runner/tasks/install.debianlike.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/tasks/install.debianlike.yml -------------------------------------------------------------------------------- /roles/gitlab_runner/tasks/install.docker-machine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/tasks/install.docker-machine.yml -------------------------------------------------------------------------------- /roles/gitlab_runner/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/tasks/main.yml -------------------------------------------------------------------------------- /roles/gitlab_runner/templates/butane-config.bu.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/templates/butane-config.bu.j2 -------------------------------------------------------------------------------- /roles/gitlab_runner/templates/clouds.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/templates/clouds.yaml.j2 -------------------------------------------------------------------------------- /roles/gitlab_runner/templates/config.toml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/templates/config.toml.j2 -------------------------------------------------------------------------------- /roles/gitlab_runner/templates/pin-gitlab-runner.pref.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/templates/pin-gitlab-runner.pref.j2 -------------------------------------------------------------------------------- /roles/gitlab_runner/templates/runner_config.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/templates/runner_config.j2 -------------------------------------------------------------------------------- /roles/gitlab_runner/vars/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/gitlab_runner/vars/debian.yml -------------------------------------------------------------------------------- /roles/haproxy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/haproxy/CHANGELOG.md -------------------------------------------------------------------------------- /roles/haproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/haproxy/README.md -------------------------------------------------------------------------------- /roles/haproxy/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/haproxy/defaults/main.yml -------------------------------------------------------------------------------- /roles/haproxy/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/haproxy/handlers/main.yml -------------------------------------------------------------------------------- /roles/haproxy/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/haproxy/meta/main.yml -------------------------------------------------------------------------------- /roles/haproxy/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/haproxy/tasks/main.yml -------------------------------------------------------------------------------- /roles/haproxy/templates/haproxy.cfg.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/haproxy/templates/haproxy.cfg.j2 -------------------------------------------------------------------------------- /roles/keepalived/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/keepalived/CHANGELOG.md -------------------------------------------------------------------------------- /roles/keepalived/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/keepalived/README.md -------------------------------------------------------------------------------- /roles/keepalived/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/keepalived/defaults/main.yml -------------------------------------------------------------------------------- /roles/keepalived/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/keepalived/handlers/main.yml -------------------------------------------------------------------------------- /roles/keepalived/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/keepalived/meta/main.yml -------------------------------------------------------------------------------- /roles/keepalived/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/keepalived/tasks/main.yml -------------------------------------------------------------------------------- /roles/keepalived/templates/keepalived.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/keepalived/templates/keepalived.conf.j2 -------------------------------------------------------------------------------- /roles/keepalived/templates/keepalived.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/keepalived/templates/keepalived.service.j2 -------------------------------------------------------------------------------- /roles/netplan/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/netplan/CHANGELOG.md -------------------------------------------------------------------------------- /roles/netplan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/netplan/README.md -------------------------------------------------------------------------------- /roles/netplan/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/netplan/defaults/main.yml -------------------------------------------------------------------------------- /roles/netplan/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/netplan/handlers/main.yml -------------------------------------------------------------------------------- /roles/netplan/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/netplan/meta/main.yml -------------------------------------------------------------------------------- /roles/netplan/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/netplan/tasks/main.yml -------------------------------------------------------------------------------- /roles/netplan/templates/config.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/netplan/templates/config.yaml.j2 -------------------------------------------------------------------------------- /roles/redis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/redis/CHANGELOG.md -------------------------------------------------------------------------------- /roles/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/redis/README.md -------------------------------------------------------------------------------- /roles/redis/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/redis/defaults/main.yml -------------------------------------------------------------------------------- /roles/redis/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/redis/handlers/main.yml -------------------------------------------------------------------------------- /roles/redis/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/redis/meta/main.yml -------------------------------------------------------------------------------- /roles/redis/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/redis/tasks/main.yml -------------------------------------------------------------------------------- /roles/redis/templates/redis-sentinel.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/redis/templates/redis-sentinel.service.j2 -------------------------------------------------------------------------------- /roles/redis/templates/redis-server.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/redis/templates/redis-server.service.j2 -------------------------------------------------------------------------------- /roles/redis/templates/redis.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/redis/templates/redis.conf.j2 -------------------------------------------------------------------------------- /roles/redis/templates/sentinel.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/redis/templates/sentinel.conf.j2 -------------------------------------------------------------------------------- /roles/ssh_keys/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/ssh_keys/CHANGELOG.md -------------------------------------------------------------------------------- /roles/ssh_keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/ssh_keys/README.md -------------------------------------------------------------------------------- /roles/ssh_keys/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/ssh_keys/defaults/main.yml -------------------------------------------------------------------------------- /roles/ssh_keys/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/ssh_keys/meta/main.yml -------------------------------------------------------------------------------- /roles/ssh_keys/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/ssh_keys/tasks/main.yml -------------------------------------------------------------------------------- /roles/unattended_upgrades/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/README.md -------------------------------------------------------------------------------- /roles/unattended_upgrades/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/defaults/main.yml -------------------------------------------------------------------------------- /roles/unattended_upgrades/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/handlers/main.yml -------------------------------------------------------------------------------- /roles/unattended_upgrades/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/meta/main.yml -------------------------------------------------------------------------------- /roles/unattended_upgrades/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/tasks/main.yml -------------------------------------------------------------------------------- /roles/unattended_upgrades/tasks/reboot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/tasks/reboot.yml -------------------------------------------------------------------------------- /roles/unattended_upgrades/tasks/systemd_timers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/tasks/systemd_timers.yml -------------------------------------------------------------------------------- /roles/unattended_upgrades/tasks/systemd_timers_remove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/tasks/systemd_timers_remove.yml -------------------------------------------------------------------------------- /roles/unattended_upgrades/tasks/unattended-upgrades.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/tasks/unattended-upgrades.yml -------------------------------------------------------------------------------- /roles/unattended_upgrades/templates/apt_daily_override.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/templates/apt_daily_override.conf.j2 -------------------------------------------------------------------------------- /roles/unattended_upgrades/templates/apt_daily_upgrade_override.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/templates/apt_daily_upgrade_override.conf.j2 -------------------------------------------------------------------------------- /roles/unattended_upgrades/templates/unattended-upgrades.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/templates/unattended-upgrades.j2 -------------------------------------------------------------------------------- /roles/unattended_upgrades/vars/Debian-buster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/vars/Debian-buster.yml -------------------------------------------------------------------------------- /roles/unattended_upgrades/vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/vars/Debian.yml -------------------------------------------------------------------------------- /roles/unattended_upgrades/vars/Ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/vars/Ubuntu.yml -------------------------------------------------------------------------------- /roles/unattended_upgrades/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/unattended_upgrades/vars/main.yml -------------------------------------------------------------------------------- /roles/zammad/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/zammad/CHANGELOG.md -------------------------------------------------------------------------------- /roles/zammad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/zammad/README.md -------------------------------------------------------------------------------- /roles/zammad/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/zammad/defaults/main.yml -------------------------------------------------------------------------------- /roles/zammad/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/zammad/handlers/main.yml -------------------------------------------------------------------------------- /roles/zammad/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/zammad/meta/main.yml -------------------------------------------------------------------------------- /roles/zammad/tasks/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/zammad/tasks/install.yml -------------------------------------------------------------------------------- /roles/zammad/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/zammad/tasks/main.yml -------------------------------------------------------------------------------- /roles/zammad/tasks/nginx-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/zammad/tasks/nginx-config.yml -------------------------------------------------------------------------------- /roles/zammad/tasks/ssl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/zammad/tasks/ssl.yml -------------------------------------------------------------------------------- /roles/zammad/templates/nginx-zammad.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/roles/zammad/templates/nginx-zammad.conf.j2 -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/uv.lock -------------------------------------------------------------------------------- /uv.lock.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hifis-net/ansible-collection-toolkit/HEAD/uv.lock.license --------------------------------------------------------------------------------