mirror of
https://github.com/roles-ansible/ansible_role_base.git
synced 2024-08-16 14:29:50 +02:00
Update sponsor and if condition syntax
This commit is contained in:
parent
e36ed01727
commit
6786f57f88
3 changed files with 6 additions and 7 deletions
2
.github/FUNDING.yml
vendored
2
.github/FUNDING.yml
vendored
|
@ -1,5 +1,5 @@
|
|||
# These are supported funding model platforms
|
||||
|
||||
# github: [do1jlr]
|
||||
github: [do1jlr]
|
||||
liberapay: L3D
|
||||
custom: https://paypal.me/c3woc
|
||||
|
|
|
@ -15,9 +15,7 @@
|
|||
state: present
|
||||
update_cache: yes
|
||||
cache_valid_time: 43200
|
||||
when:
|
||||
- ansible_os_family == 'Debian'
|
||||
- ansible_machine != 'armv6l' and ansible_distribution_release != 'wheezy'
|
||||
when: ansible_os_family == 'Debian' and ansible_distribution_version != '7' and ansible_distribution_release != 'wheezy' and ansible_machine != 'armv6l'
|
||||
|
||||
- name: Install common base packages [all]
|
||||
become: yes
|
||||
|
|
|
@ -19,13 +19,14 @@ debian_packages:
|
|||
- molly-guard
|
||||
- mtr-tiny
|
||||
- knot-dnsutils
|
||||
- python-apt
|
||||
- python3-apt
|
||||
- fio
|
||||
- apt-dater-host
|
||||
- apt-transport-https
|
||||
- aptitude
|
||||
- python3-setuptools
|
||||
#non_legacy_debian_packages:
|
||||
- python-apt
|
||||
- python3-apt
|
||||
|
||||
packages_for_all_except_rhel:
|
||||
- ranger
|
||||
|
@ -50,5 +51,5 @@ fedora_packages:
|
|||
- python3-pip
|
||||
- python3
|
||||
|
||||
playbook_version_number: 8971 # should be over ninethousand
|
||||
playbook_version_number: 8972 # should be over ninethousand
|
||||
playbook_version_path: '/etc/ansible-version/base-packages_ffbsee_or_chaos-bodensee_github.version'
|
||||
|
|
Loading…
Reference in a new issue