我目前正在尝试更新多台服务器上的所有 wp-config.php 文件。下面应该可以工作,但它不允许我使用正则表达式作为目的地。
有谁知道另一种方法来做到这一点?
---
- hosts: blah.blah.net
user: blah
sudo: true
tasks:
- name: add a new string before the match
lineinfile: dest='\/home\/.*\/public_html\/wp-config.php'
regexp='^\/\*\* MySQL database password \*\/'
insertbefore='^\/\*\* MySQL database password \*\/'
line='define("DISALLOW_FILE_MODS", true);'