Skip to content

Commit

Permalink
[Security] wordpress/* - Update WordPress to 6.2.2 (#686)
Browse files Browse the repository at this point in the history
* [Security] wordpress/* - Update WordPress to 6.2.2 and WP-CLI to 6.2.2
  • Loading branch information
michaelwittig committed Jun 6, 2023
1 parent 60945df commit 614fda2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions wordpress/wordpress-ha-aurora.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -971,9 +971,9 @@ Resources:
# ensure than only one machine installs wp
if mkdir /var/www/lock; then
cd /var/www/html
wget --quiet --timeout=60 --output-document=wp-cli.phar https://github.com/wp-cli/wp-cli/releases/download/v2.7.1/wp-cli-2.7.1.phar
wget --quiet --timeout=60 --output-document=wp-cli.phar https://github.com/wp-cli/wp-cli/releases/download/v2.8.1/wp-cli-2.8.1.phar
if ! php wp-cli.phar core is-installed --allow-root; then
php wp-cli.phar core download --allow-root --version=6.2
php wp-cli.phar core download --allow-root --version=6.2.2
php wp-cli.phar core config --dbname='wordpress' --dbuser='wordpress' --dbpass='${DBMasterUserPassword}' --dbhost='${DBHost}' --allow-root
php wp-cli.phar core install --url='https://${DomainName}' --title='${BlogTitle}' --admin_user='${BlogAdminUsername}' --admin_password='${BlogAdminPassword}' --admin_email='${BlogAdminEMail}' --skip-email --allow-root
sed -i "/$table_prefix = 'wp_';/a\$_SERVER['HTTPS'] = 'on';" /var/www/html/wp-config.php
Expand Down
4 changes: 2 additions & 2 deletions wordpress/wordpress-ha.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1103,9 +1103,9 @@ Resources:
# ensure than only one machine installs wp
if mkdir /var/www/lock; then
cd /var/www/html
wget --quiet --timeout=60 --output-document=wp-cli.phar https://github.com/wp-cli/wp-cli/releases/download/v2.7.1/wp-cli-2.7.1.phar
wget --quiet --timeout=60 --output-document=wp-cli.phar https://github.com/wp-cli/wp-cli/releases/download/v2.8.1/wp-cli-2.8.1.phar
if ! php wp-cli.phar core is-installed --allow-root; then
php wp-cli.phar core download --allow-root --version=6.2
php wp-cli.phar core download --allow-root --version=6.2.2
php wp-cli.phar core config --dbname='wordpress' --dbuser='wordpress' --dbpass='${DBMasterUserPassword}' --dbhost='${DBHost}' --allow-root
php wp-cli.phar core install --url='https://${DomainName}' --title='${BlogTitle}' --admin_user='${BlogAdminUsername}' --admin_password='${BlogAdminPassword}' --admin_email='${BlogAdminEMail}' --skip-email --allow-root
sed -i "/$table_prefix = 'wp_';/a\$_SERVER['HTTPS'] = 'on';" /var/www/html/wp-config.php
Expand Down

0 comments on commit 614fda2

Please sign in to comment.