Fix phpMyAdmin download link
This commit is contained in:
@@ -33,7 +33,6 @@ script:
|
||||
- sudo apt-get install -qq --force-yes git python3-setuptools python3-dev python3-apt ccze tree
|
||||
- sudo bash install -b $TRAVIS_BRANCH --travis
|
||||
- sudo wo --help && sudo wo stack install && sudo wo stack install --proftpd
|
||||
- sudo wo stack upgrade --netdata --no-prompt
|
||||
- sudo wo site create html.net --html && sudo wo site create php.com --php && sudo wo site create mysql.com --mysql && sudo wo site create proxy.com --proxy=127.0.0.1:3000
|
||||
- sudo wo site create wp1.com --wp && sudo wo site create wpsc1.net --wpsc && sudo wo site create wpfc1.com --wpfc
|
||||
- sudo wo site create wpsc-php73.net --wpsc --php73 && sudo wo site create wpfc-php73.net --wpfc --php73
|
||||
@@ -49,5 +48,8 @@ script:
|
||||
- sudo wo info
|
||||
- sudo tree -L 2 /etc/nginx
|
||||
- sudo cat /var/www/wp1.com/wp-config.php
|
||||
- sudo wo stack upgrade --netdata --no-prompt
|
||||
- sudo wo stack upgrade --phpmyadmin --no-prompt
|
||||
- sudo wo stack upgrade --composer --no-prompt
|
||||
- sudo wo update --travis
|
||||
- sudo wo stack status
|
||||
@@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
|
||||
- Typo in `--letsencrypt=subdomain`
|
||||
- phpMyAdmin upgrade archive extraction
|
||||
- Error in the command `wo update`. Please `wo update --beta` as workaround
|
||||
|
||||
### v3.9.6 - 2019-07-20
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ class CliTestCaseStack(test.WOTestCase):
|
||||
self.app.run()
|
||||
self.app.close()
|
||||
|
||||
def test_wo_cli_stack_services_start_php5_fpm(self):
|
||||
def test_wo_cli_stack_services_start_php_fpm(self):
|
||||
self.app = get_test_app(argv=['stack', 'start', '--php'])
|
||||
self.app.setup()
|
||||
self.app.run()
|
||||
@@ -27,12 +27,6 @@ class CliTestCaseStack(test.WOTestCase):
|
||||
self.app.run()
|
||||
self.app.close()
|
||||
|
||||
def test_wo_cli_stack_services_start_memcached(self):
|
||||
self.app = get_test_app(argv=['stack', 'start', '--memcache'])
|
||||
self.app.setup()
|
||||
self.app.run()
|
||||
self.app.close()
|
||||
|
||||
def test_wo_cli_stack_services_start_all(self):
|
||||
self.app = get_test_app(argv=['stack', 'start'])
|
||||
self.app.setup()
|
||||
|
||||
@@ -15,7 +15,7 @@ class CliTestCaseStack(test.WOTestCase):
|
||||
self.app.run()
|
||||
self.app.close()
|
||||
|
||||
def test_wo_cli_stack_services_status_php5_fpm(self):
|
||||
def test_wo_cli_stack_services_status_php_fpm(self):
|
||||
self.app = get_test_app(argv=['stack', 'status', '--php'])
|
||||
self.app.setup()
|
||||
self.app.run()
|
||||
|
||||
@@ -15,7 +15,7 @@ class CliTestCaseStack(test.WOTestCase):
|
||||
self.app.run()
|
||||
self.app.close()
|
||||
|
||||
def test_wo_cli_stack_services_stop_php5_fpm(self):
|
||||
def test_wo_cli_stack_services_stop_php_fpm(self):
|
||||
self.app = get_test_app(argv=['stack', 'stop', '--php'])
|
||||
self.app.setup()
|
||||
self.app.run()
|
||||
@@ -27,12 +27,6 @@ class CliTestCaseStack(test.WOTestCase):
|
||||
self.app.run()
|
||||
self.app.close()
|
||||
|
||||
def test_wo_cli_stack_services_stop_memcached(self):
|
||||
self.app = get_test_app(argv=['stack', 'stop', '--memcache'])
|
||||
self.app.setup()
|
||||
self.app.run()
|
||||
self.app.close()
|
||||
|
||||
def test_wo_cli_stack_services_stop_all(self):
|
||||
self.app = get_test_app(argv=['stack', 'stop'])
|
||||
self.app.setup()
|
||||
|
||||
@@ -15,7 +15,7 @@ class CliTestCaseStack(test.WOTestCase):
|
||||
self.app.run()
|
||||
self.app.close()
|
||||
|
||||
def test_wo_cli_stack_services_restart_php5_fpm(self):
|
||||
def test_wo_cli_stack_services_restart_php_fpm(self):
|
||||
self.app = get_test_app(argv=['stack', 'restart', '--php'])
|
||||
self.app.setup()
|
||||
self.app.run()
|
||||
@@ -27,12 +27,6 @@ class CliTestCaseStack(test.WOTestCase):
|
||||
self.app.run()
|
||||
self.app.close()
|
||||
|
||||
def test_wo_cli_stack_services_restart_memcached(self):
|
||||
self.app = get_test_app(argv=['stack', 'restart', '--memcache'])
|
||||
self.app.setup()
|
||||
self.app.run()
|
||||
self.app.close()
|
||||
|
||||
def test_wo_cli_stack_services_restart_all(self):
|
||||
self.app = get_test_app(argv=['stack', 'restart'])
|
||||
self.app.setup()
|
||||
|
||||
@@ -27,12 +27,6 @@ class CliTestCaseClean(test.WOTestCase):
|
||||
self.app.run()
|
||||
self.app.close()
|
||||
|
||||
def test_wo_cli_clean_memcache(self):
|
||||
self.app = get_test_app(argv=['clean', '--memcache'])
|
||||
self.app.setup()
|
||||
self.app.run()
|
||||
self.app.close()
|
||||
|
||||
def test_wo_cli_clean_opcache(self):
|
||||
self.app = get_test_app(argv=['clean', '--opcache'])
|
||||
self.app.setup()
|
||||
|
||||
@@ -158,7 +158,7 @@ class WOStackUpgradeController(CementBaseController):
|
||||
"/phpMyAdmin/{0}/"
|
||||
"phpMyAdmin-{0}-"
|
||||
"all-languages"
|
||||
".zip".format(WOVariables.wo_phpmyadmin),
|
||||
".tar.gz".format(WOVariables.wo_phpmyadmin),
|
||||
"/var/lib/wo/tmp/pma.tar.gz",
|
||||
"PHPMyAdmin"]]
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user