Ansible linefile插入重复行后

时间:2015-08-27 15:48:59

标签: ansible ansible-playbook idempotent

我想在VBox中修复损坏的sendfile支持,所以我需要放入线路。 我想用ansible playbook做到这一点。具体任务如下:

- name: fix broken sendfile support in VBox
  lineinfile:
    dest: /etc/apache2/sites-enabled/000-default
    regexp: '^ServerAdmin'
    insertafter: 'ServerAdmin'
    line: 'EnableSendfile off'
    state: present

当我需要再次调用playbook时,问题就出现了,这个任务重复了。如何解决这个问题。

0 个答案:

没有答案