ansible/playbooks/00_local.yml
2023-10-27 06:37:36 +02:00

12 lines
347 B
YAML

- hosts: localhost1
name: Apt udate
connection: local
tasks:
- command: whoami
register: whoami
- debug:
var: whoami.stdout
- name: Apt exclude linux-dtb-current-meson64
ansible.builtin.shell: 'apk update'
- name: Apt exclude linux-dtb-current-meson64
ansible.builtin.shell: 'apk add py3-jmespath'