Merge branch 'master' into updating-configuration

This commit is contained in:
VirtuBox
2019-08-12 22:19:34 +02:00
5 changed files with 11 additions and 5 deletions

View File

@@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### v3.9.x - [Unreleased] ### v3.9.x - [Unreleased]
### v3.9.7.2 - 2019-08-12
#### Fixed
- redis.conf permissions additional fix
### v3.9.7.1 - 2019-08-09 ### v3.9.7.1 - 2019-08-09
- APT Packages configuration step with `wo stack upgrade` to apply new configurations - APT Packages configuration step with `wo stack upgrade` to apply new configurations

View File

@@ -7,10 +7,10 @@
# Copyright (c) 2019 - WordOps # Copyright (c) 2019 - WordOps
# This script is licensed under M.I.T # This script is licensed under M.I.T
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
# Version 3.9.7.1 - 2019-08-08 # Version 3.9.7.2 - 2019-08-12
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
readonly wo_version_old="2.2.3" readonly wo_version_old="2.2.3"
readonly wo_version_new="3.9.7.1" readonly wo_version_new="3.9.7.2"
# CONTENTS # CONTENTS
# --- # ---
# 1. VARIABLES AND DECLARATIONS # 1. VARIABLES AND DECLARATIONS

View File

@@ -56,7 +56,7 @@ if not os.path.isfile('/root/.gitconfig'):
shutil.copy2(os.path.expanduser("~")+'/.gitconfig', '/root/.gitconfig') shutil.copy2(os.path.expanduser("~")+'/.gitconfig', '/root/.gitconfig')
setup(name='wo', setup(name='wo',
version='3.9.7.1', version='3.9.7.2',
description=long_description, description=long_description,
long_description=long_description, long_description=long_description,
classifiers=[], classifiers=[],

View File

@@ -397,7 +397,7 @@ class WOStackController(CementBaseController):
Log.debug(self, "Calling pre_pref") Log.debug(self, "Calling pre_pref")
pre_pref(self, apt_packages) pre_pref(self, apt_packages)
if (apt_packages): if (apt_packages):
meminfo = (os.popen('cat /proc/meminfo ' meminfo = (os.popen('/bin/cat /proc/meminfo '
'| grep MemTotal').read()).split(":") '| grep MemTotal').read()).split(":")
memsplit = re.split(" kB", meminfo[1]) memsplit = re.split(" kB", meminfo[1])
wo_mem = int(memsplit[0]) wo_mem = int(memsplit[0])

View File

@@ -10,7 +10,7 @@ class WOVariables():
"""Intialization of core variables""" """Intialization of core variables"""
# WordOps version # WordOps version
wo_version = "3.9.7.1" wo_version = "3.9.7.2"
# WordOps packages versions # WordOps packages versions
wo_wp_cli = "2.2.0" wo_wp_cli = "2.2.0"
wo_adminer = "4.7.2" wo_adminer = "4.7.2"