Maybe chrony rather than ntp? What OS is your target host running?
On Saturday, July 22, 2023 at 3:27:11 PM UTC-4 arjungoel 1995 wrote:
> Hi, I was just testing a basic playbook in Ansible. Here is the playbook
> code:
>
> ---
> - name: Set up NTP on all servers
> hosts: all
> become: true
> tasks:
> - name: Ensure NTP is installed
> yum:
> name: ntp
> state: present
> - name: Ensure NTP is running
> service:
> name: ntpd
> state: started
> enabled: yes
>
>
> When I am running the ansible-playbook playbook.yaml command, I am getting
> this error:
>
> TASK [Ensure NTP is installed]
> ****************************************************************************************************************
> fatal: [3.226.126.95]: FAILED! => {"changed": false, "failures": ["No
> package ntp available."], "msg": "Failed to install some of the specified
> packages", "rc": 1, "results": []}
>
> PLAY RECAP
> ************************************************************************************************************************************
> 3.226.126.95 : ok=1 changed=0 unreachable=0
> failed=1 skipped=0 rescued=0 ignored=0
>
>
> Please help me.
>
--
You received this message because you are subscribed to the Google Groups
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/ansible-project/b2c97345-e157-492e-bcff-a345002060d2n%40googlegroups.com.