Restarting Httpd services
Task 11.3 Description :- đź”° 11.3 Restarting HTTPD Service is not idempotence in nature and also consume more resources suggest a way to rectify this challenge in Ansible playbook. Using Handlers: - hosts: web3 vars_files: httpd_var.yml tasks: - file: path: "/dvd" state: directory ignore_errors: yes - mount: src: "/dev/cdrom" path: "/dvd" fstype: iso9660 ...