我想在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时,问题就出现了,这个任务重复了。如何解决这个问题。