だから私は私のconfiguration.yml(ansible task)にこの行を持っています
- name: inserting password into database.php
lineinfile: dest=/vagrant/htdocs/app/config/database.php insertbefore="^\s*'pgsql' => array" regexp="^\s*'password'" line=" 'password' => '',"
そして、私はこれを置き換えようとしています:
'sqlite' => array( 'driver' => 'sqlite', 'database' => __DIR__.'/../database/production.sqlite', 'prefix' => '', ), 'mysql' => array( 'driver' => 'mysql', 'host' => 'localhost', 'database' => 'echoit', 'username' => 'root', 'password' => 'vp45tudsdt', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', 'port' => 8889 ),
'pgsql' => array(
'driver' => 'pgsql',
'host' => 'localhost',
'database' => 'forge',
'username' => 'forge',
'password' => '',
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
),
正規表現をgrepしようとすると:
grep "^\s*'pgsql' => array" ./htdocs/app/config/database.default.php
'pgsql' => array(
そして、他のものをgrepすると:
grep "^\s*'password'" ./htdocs/app/config/database.php
'password' => 'xxxxxxx',
'password' => '',
'password' => '',
したがって、私の正規表現は私が期待するものと正確に一致しますが、この beforeline は機能しません。この機能に関する ansible ドキュメントにより、最後の一致が BEFORE になると信じられましたが 'pgsql' => array
、この場合、最後のパス'password' => '',