Fix php8.0-cli issue
This commit is contained in:
@@ -8,13 +8,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
### v3.9.x - [Unreleased]
|
### v3.9.x - [Unreleased]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Add avif (AV1 Image Format) support into Nginx ([PR #314](https://github.com/WordOps/WordOps/pull/314))
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- Use zstd instead of pigz for archive compression
|
- Use zstd instead of pigz for archive compression
|
||||||
|
- Exclude Nginx_vts status page from traffic calculation ([PR #294](https://github.com/WordOps/WordOps/pull/294))
|
||||||
|
|
||||||
#### Fixed
|
#### Fixed
|
||||||
|
|
||||||
- fail2ban install without Nginx
|
- fail2ban install without Nginx
|
||||||
|
- Grant MySQL permissions on all MySQL/MariaDB variant ([PR #285](https://github.com/WordOps/WordOps/pull/285))
|
||||||
|
|
||||||
### v3.12.2 - 2020-05-15
|
### v3.12.2 - 2020-05-15
|
||||||
|
|
||||||
|
|||||||
@@ -219,7 +219,11 @@ def setupdatabase(self, data):
|
|||||||
Log.debug(self, "Setting up user privileges")
|
Log.debug(self, "Setting up user privileges")
|
||||||
try:
|
try:
|
||||||
WOMysql.execute(self,
|
WOMysql.execute(self,
|
||||||
"grant select, insert, update, delete, create, drop, references, index, alter, create temporary tables, lock tables, execute, create view, show view, create routine, alter routine, event, trigger on `{0}`.* to `{1}`@`{2}`"
|
"grant select, insert, update, delete, create, drop, "
|
||||||
|
"references, index, alter, create temporary tables, "
|
||||||
|
"lock tables, execute, create view, show view, "
|
||||||
|
"create routine, alter routine, event, "
|
||||||
|
"trigger on `{0}`.* to `{1}`@`{2}`"
|
||||||
.format(wo_db_name,
|
.format(wo_db_name,
|
||||||
wo_db_username, wo_mysql_grant_host))
|
wo_db_username, wo_mysql_grant_host))
|
||||||
except StatementExcecutionError:
|
except StatementExcecutionError:
|
||||||
|
|||||||
@@ -137,7 +137,9 @@ class WOVar():
|
|||||||
"readline", "common",
|
"readline", "common",
|
||||||
"cli", "mbstring", "intl",
|
"cli", "mbstring", "intl",
|
||||||
"bcmath", "mysql", "opcache",
|
"bcmath", "mysql", "opcache",
|
||||||
"zip", "xml", "soap"]
|
"zip", "xml", "soap", "memcached",
|
||||||
|
"imagick", "igbinary", "msgpack",
|
||||||
|
"redis", "xdebug"]
|
||||||
wo_php72 = []
|
wo_php72 = []
|
||||||
for module in wo_module:
|
for module in wo_module:
|
||||||
wo_php72 = wo_php72 + ["php7.2-{0}".format(module)]
|
wo_php72 = wo_php72 + ["php7.2-{0}".format(module)]
|
||||||
@@ -150,12 +152,7 @@ class WOVar():
|
|||||||
for module in wo_module:
|
for module in wo_module:
|
||||||
wo_php74 = wo_php74 + ["php7.4-{0}".format(module)]
|
wo_php74 = wo_php74 + ["php7.4-{0}".format(module)]
|
||||||
|
|
||||||
if not wo_platform_codename == 'focal':
|
wo_php_extra = ["graphviz"]
|
||||||
wo_php_extra = ["php-memcached", "php-imagick", "php-igbinary",
|
|
||||||
"graphviz", "php-xdebug", "php-msgpack", "php-redis"]
|
|
||||||
else:
|
|
||||||
wo_php_extra = ["php-imagick", "php-igbinary",
|
|
||||||
"graphviz", "php-xdebug", "php-msgpack", "php-redis"]
|
|
||||||
|
|
||||||
wo_mysql = ["mariadb-server", "percona-toolkit"]
|
wo_mysql = ["mariadb-server", "percona-toolkit"]
|
||||||
if wo_distro == 'raspbian':
|
if wo_distro == 'raspbian':
|
||||||
|
|||||||
Reference in New Issue
Block a user