]> git.openstreetmap.org Git - chef.git/commitdiff
wordpress: Use DOS line ending. Disable WP auto updater
authorGrant Slater <git@firefishy.com>
Mon, 11 Jul 2022 08:06:38 +0000 (11:06 +0300)
committerGrant Slater <git@firefishy.com>
Mon, 11 Jul 2022 08:09:14 +0000 (11:09 +0300)
cookbooks/wordpress/resources/site.rb

index 1d419c14e152fb32e82f8d3a95f89401b4d2385c..c3f16ddca51ffa506e5ee37d6aeab1595857e29a 100644 (file)
@@ -92,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