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 b138e55 commit 8ac6222Copy full SHA for 8ac6222
provisioning/tasks/init.yml
@@ -3,15 +3,15 @@
3
apt: update_cache=yes cache_valid_time=86400
4
5
- name: Get software for Python-based control.
6
- apt: "pkg={{ item }} state=installed"
+ apt: "name={{ item }} state=installed"
7
with_items:
8
- - curl
9
- - python-apt
10
- - python-pycurl
11
- - build-essential
+ - curl
+ - python-apt
+ - python-pycurl
+ - build-essential
12
13
- name: Disable the firewall (since this is for local dev only).
14
service: name=ufw state=stopped
15
16
- name: Install postfix so Drupal can send emails.
17
- apt: pkg=postfix state=installed
+ apt: name=postfix state=installed
0 commit comments