Fixing ansible-lint errors
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2026-09-15 21:39:47 -04:00
parent 2438978296
commit 7a43c728a3
7 changed files with 31 additions and 33 deletions
+5 -7
View File
@@ -1,17 +1,15 @@
---
- hosts: all
become: True
- name: Install common packages
hosts: all
become: true
tasks:
- name: Install common packages on all hosts
package:
ansible.builtin.package:
name: "{{ packages_common }}"
state: present
- hosts: all
become: True
tasks:
- name: Install extra packages if listed
package:
ansible.builtin.package:
name: "{{ packages_extra | default([]) }}"
state: present