diff --git a/.travis.yml b/.travis.yml index 1b45e50..5bd7075 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,5 +54,7 @@ script: - sudo wo stack upgrade --composer --no-prompt - sudo wo update --travis - sudo wo stack status + - sudo tar -I pigz -cf /var/log/wo + - curl --progress-bar --upload-file wordops.tar.gz https://transfer.vtbox.net/$(basename "$1") && echo ""; } | tee -a $HOME/.transfer.log && echo "" - echo "yes" | sudo wo stack purge --all - sudo bash install --purge diff --git a/install b/install index 08452d3..17c7243 100755 --- a/install +++ b/install @@ -7,10 +7,10 @@ # Copyright (c) 2019 - WordOps # This script is licensed under M.I.T # ------------------------------------------------------------------------- -# Version 3.9.7 - 2019-08-02 +# Version 3.9.7.1 - 2019-08-06 # ------------------------------------------------------------------------- readonly wo_version_old="2.2.3" -readonly wo_version_new="3.9.7" +readonly wo_version_new="3.9.7.1" # CONTENTS # --- # 1. VARIABLES AND DECLARATIONS diff --git a/setup.py b/setup.py index dff04ab..c05b21e 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ if not os.path.isfile('/root/.gitconfig'): shutil.copy2(os.path.expanduser("~")+'/.gitconfig', '/root/.gitconfig') setup(name='wo', - version='3.9.7', + version='3.9.7.1', description=long_description, long_description=long_description, classifiers=[], diff --git a/wo/cli/plugins/site_functions.py b/wo/cli/plugins/site_functions.py index dd66040..a37f7bb 100644 --- a/wo/cli/plugins/site_functions.py +++ b/wo/cli/plugins/site_functions.py @@ -957,15 +957,6 @@ def site_package_check(self, stype): out=wo_nginx) wo_nginx.close() - if os.path.isfile("/etc/nginx/conf.d/upstream.conf"): - if not WOFileUtils.grep(self, "/etc/nginx/conf.d/upstream.conf", - "php73"): - with open("/etc/nginx/conf.d/upstream.conf", "a") as php_file: - php_file.write("upstream php73 {\nserver" - "unix:/var/run/php/php73-fpm.sock;\n}\n" - "upstream debug73" - " {\nserver 127.0.0.1:9173;\n}\n") - return(stack.install(apt_packages=apt_packages, packages=packages, disp_msg=False)) diff --git a/wo/core/variables.py b/wo/core/variables.py index cf3474e..f565cff 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -10,7 +10,7 @@ class WOVariables(): """Intialization of core variables""" # WordOps version - wo_version = "3.9.7" + wo_version = "3.9.7.1" # WordOps packages versions wo_wp_cli = "2.2.0" wo_adminer = "4.7.2"