summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-10-15 10:59:21 +0300
committerLars Wirzenius <liw@liw.fi>2019-10-15 10:59:21 +0300
commitdf6c3f071c88b900edfad2a6421e8e2d7c23e831 (patch)
treec92d1e9c0b54218ab84f159c1017514bc1799184
parent1e0a2f330f3eb35ea03d83353c0164c2d0fec3e9 (diff)
downloadick2-ansible-df6c3f071c88b900edfad2a6421e8e2d7c23e831.tar.gz
Change: use dest instead of path for compat with old Ansible
-rw-r--r--roles/apt_repository/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/apt_repository/tasks/main.yml b/roles/apt_repository/tasks/main.yml
index 6993e82..84a7962 100644
--- a/roles/apt_repository/tasks/main.yml
+++ b/roles/apt_repository/tasks/main.yml
@@ -34,7 +34,7 @@
- name: configure apache to only listen on port 8080
lineinfile:
- path: /etc/apache2/ports.conf
+ dest: /etc/apache2/ports.conf
regexp: "^ *Listen .*$"
line: "Listen 8080"