From 62b4e839cc8cf28230f4d66f79f7b34f9c118590 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 16 Aug 2019 00:19:48 +0200 Subject: [PATCH] Update changelog --- CHANGELOG.md | 3 ++- wo/cli/plugins/stack_pref.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f20a75..f1bf59b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - nginx-core.mustache template used to render nginx.conf during stack setup - APT Packages configuration step with `wo stack upgrade` to apply new configurations - Cloudflare restore real_ip configuration -- WP-Rocket support with the flag `--wprocket` +- WP-Rocket plugin support with the flag `--wprocket` +- Cache-Enabler plugin support with the flag `--wpce` - Install unattended-upgrade and enable automated security updates - Enable time synchronization with ntp - Additional cache exception for woocommerce diff --git a/wo/cli/plugins/stack_pref.py b/wo/cli/plugins/stack_pref.py index 4e8cb00..adccc55 100644 --- a/wo/cli/plugins/stack_pref.py +++ b/wo/cli/plugins/stack_pref.py @@ -380,7 +380,7 @@ def post_pref(self, apt_packages, packages): wo_nginx.close() with open("/etc/nginx/common/release", - "a") as release_file: + "w") as release_file: release_file.write("v{0}" .format(WOVariables.wo_version)) release_file.close()