kaytus.ksmanage.edit_ntp – Set NTP¶
Note
This plugin is part of the kaytus.ksmanage collection.
To install it use: ansible-galaxy collection install kaytus.ksmanage
.
To use it in a playbook, specify: kaytus.ksmanage.edit_ntp
.
New in version 1.0.0: of kaytus.ksmanage
Requirements¶
The below requirements are needed on the host that executes this module.
Python 3.7+
inManage
Parameters¶
Examples¶
- name: NTP test
hosts: ksmanage
connection: local
gather_facts: no
vars:
ksmanage:
host: "{{ ansible_ssh_host }}"
username: "{{ username }}"
password: "{{ password }}"
tasks:
- name: "Set ntp"
kaytus.ksmanage.edit_ntp:
auto_date: "enable"
server2: "time.nist.gov"
provider: "{{ ksmanage }}"
- name: "Set ntp"
kaytus.ksmanage.edit_ntp:
auto_date: "disable"
ntp_time: "20200609083600"
provider: "{{ ksmanage }}"
- name: "set ntp"
kaytus.ksmanage.edit_ntp:
time_zone: "8"
provider: "{{ ksmanage }}"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
WangBaoshan (@ieisystem)