---
- hosts: all
tasks:
- name: create a hello world textfile
copy:
content: "Hello World!"
dest: /tmp/hello.txt
owner: root
group: root
mode: 0640
notify:
- redhat handler
- debian handler
sudo: yes
handlers:
- name: redhat handler
debug: msg='redhat'
when: ansible_distribution == "RedHat"
- name: debian handler
debug: msg='debian'
when: ansible_distribution == "Debian"


Ansible Fundamental tutorial by Manish in 2020

Ansible Advance Tutorial for Beginners with Demo 2020 — By DevOpsSchool

Ansible with network module (Part 01) — By DevOpsSchool

Ansible with network module (Part 02) — By DevOpsSchool

Ansible with network module (Part 03) — By DevOpsSchool

Ansible with network module (Part 04) — By DevOpsSchool

Ansible with network module (Part 05) — By DevOpsSchool

Ansible with network module (Part 06) — By DevOpsSchool

Ansible with network module (Part 07) — By DevOpsSchool

Ansible with network module (Part 08) — By DevOpsSchool

Ansible with network module (Part 09) — By DevOpsSchool

Ansible with network module (Part 10) — By DevOpsSchool

Ansible with network module (Part 11) — By DevOpsSchool

Ansible with network module (Part 12) — By DevOpsSchool

Ansible with network module (Part 13) — By DevOpsSchool

Latest posts by Rajesh Kumar (see all)
- Dynatrace Tutorials: Define new applications for Real User Monitoring (RUM) - September 24, 2023
- Package Types Supported by Artifactory - September 24, 2023
- System Design Components - September 24, 2023