update ansible collections sops, docker and debops
This commit is contained in:
parent
f1135b818f
commit
e31ee5e39c
910 changed files with 27667 additions and 19786 deletions
|
|
@ -4,4 +4,4 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||
SPDX-FileCopyrightText: 2022, Felix Fontein
|
||||
-->
|
||||
|
||||
See [the documentation](https://docs.ansible.com/ansible/devel/collections/community/sops/).
|
||||
See [the documentation](https://docs.ansible.com/projects/ansible/devel/collections/community/sops/).
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ argument_specs:
|
|||
Debian 10 (Buster) or newer,
|
||||
Fedora (new enough),
|
||||
RHEL 7 or newer,
|
||||
OpenSuSE Tumbleweed (and probably also Leap),
|
||||
Ubuntu 16.04 or newer LTS versions
|
||||
- The Ansible facts C(ansible_facts.architecture), C(ansible_facts.distribution), C(ansible_facts.distribution_major_version),
|
||||
C(ansible_facts.distribution_version), and C(ansible_facts.os_family) are expected to be present if O(sops_install_on_localhost) is V(false).
|
||||
|
|
@ -101,3 +102,4 @@ argument_specs:
|
|||
- Fedora (new enough)
|
||||
- RHEL 7 or newer
|
||||
- Ubuntu 16.04 or newer LTS versions
|
||||
- OpenSuSE Tumbleweed (and probably also Leap)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
# Copyright (c) Ansible Project
|
||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
_community_sops_install_system_has_system: true
|
||||
_community_sops_install_system_has_system_latest_only: true
|
||||
_community_sops_install_system_has_github: true
|
||||
|
||||
_community_sops_install_allow_downgrade: true
|
||||
|
||||
_community_sops_install_system_packages:
|
||||
- gpg2
|
||||
_community_sops_install_system_packages_unsigned: []
|
||||
|
||||
_community_sops_install_system_package_deb_github: false
|
||||
_community_sops_install_system_packages_github: []
|
||||
_community_sops_install_system_packages_unsigned_github:
|
||||
- >-
|
||||
https://github.com/getsops/sops/releases/download/v{{
|
||||
_community_sops_install_effective_sops_version
|
||||
}}/sops-{{
|
||||
(_community_sops_install_effective_sops_version is version('3.6.0', '<')) | ternary('v', '')
|
||||
}}{{
|
||||
_community_sops_install_effective_sops_version.replace('-', '.')
|
||||
}}{{
|
||||
(
|
||||
_community_sops_install_effective_sops_version is version('3.8.0', '<') or
|
||||
_community_sops_install_effective_sops_version is version('3.9.0', '>=')
|
||||
) | ternary('-1', '')
|
||||
}}.{{
|
||||
ansible_facts.architecture
|
||||
}}.rpm
|
||||
|
||||
_community_sops_install_system_package_deb_system: false
|
||||
_community_sops_install_system_packages_system:
|
||||
- sops
|
||||
_community_sops_install_system_packages_unsigned_system: []
|
||||
Loading…
Reference in a new issue