Skip to content

Commit

Permalink
add missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
mruzicka committed Mar 9, 2012
1 parent e7dbd10 commit cd8fa10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/wordpress/manifests/config_param.pp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
augeas { "wp_replace_double_quoted_config_param-${wp_root}-${key}":
incl => "${wp_root}/wp-config.php",
lens => 'Wordpress.lns',
load_path => "${augeas::lens_dir}"
load_path => "${augeas::lens_dir}",
context => "/files${wp_root}/wp-config.php",
onlyif => "match \"\\\"${key}\\\"\" != []",
changes => [
Expand All @@ -22,7 +22,7 @@
augeas { "wp_insert_new_config_param-${wp_root}-${key}":
incl => "${wp_root}/wp-config.php",
lens => 'Wordpress.lns',
load_path => "${augeas::lens_dir}"
load_path => "${augeas::lens_dir}",
context => "/files${wp_root}/wp-config.php",
onlyif => "match \"'${key}'\" == []",
changes => [
Expand All @@ -36,7 +36,7 @@
augeas { "wp_set_config_param-${wp_root}-${key}":
incl => "${wp_root}/wp-config.php",
lens => 'Wordpress.lns',
load_path => "${augeas::lens_dir}"
load_path => "${augeas::lens_dir}",
context => "/files${wp_root}/wp-config.php",
changes => [
"set \"'${key}'\" \"'${value}'\"",
Expand Down

0 comments on commit cd8fa10

Please sign in to comment.