説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ntp.yml 304B

1234567891011121314
  1. ---
  2. # Defines tasks applicable for NTP (Network Time Protocol)
  3. - name: Install ntp
  4. apt: pkg=ntp state=installed
  5. - name: Configure ntp
  6. template: src=ntp.conf.j2 dest=/etc/ntp.conf
  7. notify:
  8. - restart ntp
  9. - name: Ensure ntpd is running and enabled
  10. service: name=ntp state=started enabled=yes