21 lines
353 B
YAML
21 lines
353 B
YAML
- name: Hello world
|
|
hosts: all
|
|
become: false
|
|
gather_facts: false
|
|
|
|
|
|
tasks:
|
|
- name: Say hello world
|
|
ansible.builtin.debug:
|
|
msg: Hello world!
|
|
|
|
- name: Say goodbye world
|
|
ansible.builtin.debug:
|
|
msg: Goodbye world!
|
|
|
|
|
|
- name: Install Htop
|
|
ansible.builtin.package:
|
|
name: htop
|
|
state: present
|