diff options
| author | admin | 2023-12-18 14:49:09 +0100 |
|---|---|---|
| committer | admin | 2023-12-18 14:49:09 +0100 |
| commit | 64dfd20134ee028cc865745d8d8bfec31299ff0a (patch) | |
| tree | 240e1552d24c2ae84d809846d66daef818826420 /roles/common-linux/tasks/ntp.yml | |
| download | ansible-64dfd20134ee028cc865745d8d8bfec31299ff0a.tar.gz | |
initial commit
Diffstat (limited to 'roles/common-linux/tasks/ntp.yml')
| -rw-r--r-- | roles/common-linux/tasks/ntp.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/roles/common-linux/tasks/ntp.yml b/roles/common-linux/tasks/ntp.yml new file mode 100644 index 0000000..603b456 --- /dev/null +++ b/roles/common-linux/tasks/ntp.yml @@ -0,0 +1,10 @@ +- name: install ntp + apt: + name: + - 'ntp' + +- name: ntp.conf + copy: + src: ntp.conf + dest: /etc/ntp.conf + notify: restart ntpd |
