We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d633859 commit e365f05Copy full SHA for e365f05
xmpp2/nginx.yml
@@ -8,17 +8,17 @@
8
become: true
9
tasks:
10
- name: Update apt cache
11
- apt:
12
- update_cache: yes
+ ansible.builtin.apt:
+ update_cache: true
13
cache_valid_time: 3600
14
15
- name: Install nginx package
16
17
name: nginx
18
state: present
19
20
- name: Start and enable nginx service
21
- service:
+ ansible.builtin.service:
22
23
state: started
24
- enabled: yes
+ enabled: true
0 commit comments