Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
1234567891011121314 |
- ---
- # Defines tasks applicable for NTP (Network Time Protocol)
-
- - name: Install ntp
- apt: pkg=ntp state=installed
-
- - name: Configure ntp
- template: src=ntp.conf.j2 dest=/etc/ntp.conf
- notify:
- - restart ntp
-
- - name: Ensure ntpd is running and enabled
- service: name=ntp state=started enabled=yes
|