ansible/playbooks/00_local.yml

12 lines
347 B
YAML
Raw Normal View History

2023-10-26 19:22:34 +02:00
- hosts: localhost1
2023-10-26 19:12:33 +02:00
name: Apt udate
2023-10-26 22:32:37 +02:00
connection: local
2023-10-26 19:12:33 +02:00
tasks:
2023-10-27 06:37:36 +02:00
- command: whoami
register: whoami
- debug:
var: whoami.stdout
2023-10-26 19:12:33 +02:00
- name: Apt exclude linux-dtb-current-meson64
2023-10-26 22:31:41 +02:00
ansible.builtin.shell: 'apk update'
- name: Apt exclude linux-dtb-current-meson64
ansible.builtin.shell: 'apk add py3-jmespath'