Valid EX407 Dumps shared by ExamDiscuss.com for Helping Passing EX407 Exam! ExamDiscuss.com now offer the newest EX407 exam dumps, the ExamDiscuss.com EX407 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com EX407 dumps with Test Engine here:
=================================================================================== control.realmX.example.com _ workstation.lab.example.com node1.realmX.example.com _ servera.lab.example.com node2.realmX.example.com _ serverb.lab.example.com node3.realmX.example.com _ serverc.lab.example.com node4.realmX.example.com _ serverd.lab.example.com node5.realmX.example.com - username:root, password:redhat - username:admin, password:redhat note1. don't change 'root' or 'admin' password. note2. no need to create ssh-keygen for access, its pre-defined note3. SELinux is in enforcing mode and firewalld is disabled/stop on whole managed hosts. Install the RHEL system roles package and create a playbook called timesync.yml that: --> Runs over all managed hosts. --> Uses the timesync role. --> Configures the role to use the time server 192.168.10.254 ( Hear in redhat lab use "classroom.example.com" ) --> Configures the role to set the iburst parameter as enabled.
Correct Answer:
Solution as: # pwd home/admin/ansible/ # sudo yum install rhel-system-roles.noarch -y # cd roles/ # ansible-galaxy list # cp -r /usr/share/ansible/roles/rhelsystem-roles.timesync . # vim timesync.yml --- - name: timesynchronization hosts: all vars: timesync_ntp_provider: chrony timesync_ntp_servers: - hostname: classroom.example.com _ in exam its ip-address iburst: yes timezone: Asia/Kolkata roles: - rhel-system-roles.timesync tasks: - name: set timezone timezone: name: "{{ timezone }}" :wq! timedatectl list-timezones | grep india # ansible-playbook timesync.yml --syntax-check # ansible-playbook timesync.yml # ansible all -m shell -a 'chronyc sources -v' # ansible all -m shell -a 'timedatectl' # ansible all -m shell -a 'systemctl is-enabled chronyd'