mirror of
https://github.com/roles-ansible/ansible_role_packages.git
synced 2024-08-16 10:19:51 +02:00
install optional pkgs
This commit is contained in:
parent
187b8d2b6d
commit
c3e2346397
2 changed files with 7 additions and 1 deletions
|
@ -33,3 +33,9 @@
|
|||
- name: optional install keychain
|
||||
ansible.builtin.include_tasks: keychain.yml
|
||||
when: base__install_keychain | bool
|
||||
|
||||
- name: install optional packages
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: "{{ base__extra_packages }}"
|
||||
state: present
|
||||
|
|
|
@ -61,5 +61,5 @@ base__linux_packages:
|
|||
- bzip2
|
||||
- jq
|
||||
|
||||
playbook_version_number: 9011
|
||||
playbook_version_number: 9012
|
||||
playbook_version_path: 'base-packages_roles-ansible_github.version'
|
||||
|
|
Loading…
Reference in a new issue