X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/b4b7207702e937ea24d18db199df9951aa71bd18..3a55f93736b4fce4cf3702f51fc4f462723b7ac6:/cookbooks/wordpress/resources/site.rb diff --git a/cookbooks/wordpress/resources/site.rb b/cookbooks/wordpress/resources/site.rb index a00cd9cac..c3f16ddca 100644 --- a/cookbooks/wordpress/resources/site.rb +++ b/cookbooks/wordpress/resources/site.rb @@ -18,6 +18,8 @@ require "securerandom" +unified_mode true + default_action :create property :site, :kind_of => String, :name_property => true @@ -90,14 +92,16 @@ action :create do line.gsub!(/('LOGGED_IN_SALT', *)'put your unique phrase here'/, "\\1'#{logged_in_salt}'") line.gsub!(/('NONCE_SALT', *)'put your unique phrase here'/, "\\1'#{nonce_salt}'") - if line =~ /define\('WP_DEBUG'/ - line += "\n" - line += "/**\n" - line += " * Don't allow file editing.\n" - line += " */\n" - line += "define('DISALLOW_FILE_EDIT', true);\n" - line += "define('FORCE_SSL_LOGIN', true);\n" - line += "define('FORCE_SSL_ADMIN', true);\n" + if line =~ /Add any custom values between this line/ + line += "\r\n" + line += "/**\r\n" + line += " * Don't allow file editing.\r\n" + line += " */\r\n" + line += "define( 'DISALLOW_FILE_EDIT', true);\r\n" + line += "define( 'DISALLOW_FILE_MODS', true);\r\n" + line += "define( 'AUTOMATIC_UPDATER_DISABLED', true);\r\n" + line += "define( 'FORCE_SSL_LOGIN', true);\r\n" + line += "define( 'FORCE_SSL_ADMIN', true);\r\n" end line