Browse Source

Ansible 2.2 compatibility fix

pull/1943/head
Greg Szabo 7 years ago
parent
commit
43c86c2a9c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ansible/roles/install/tasks/main.yml

+ 1
- 1
ansible/roles/install/tasks/main.yml View File

@ -5,7 +5,7 @@
file: path=/etc/localtime state=link src=/usr/share/zoneinfo/{{timezone}} force=yes
- name: Disable journald rate-limiting
lineinfile: "path=/etc/systemd/journald.conf regexp={{item.regexp}} line='{{item.line}}'"
lineinfile: "dest=/etc/systemd/journald.conf regexp={{item.regexp}} line='{{item.line}}'"
with_items:
- { regexp: "^#RateLimitInterval", line: "RateLimitInterval=0s" }
- { regexp: "^#RateLimitBurst", line: "RateLimitBurst=0" }


Loading…
Cancel
Save