|
@ -12,7 +12,7 @@ class EEVariables(): |
|
|
"""Intialization of core variables""" |
|
|
"""Intialization of core variables""" |
|
|
|
|
|
|
|
|
# EasyEngine version |
|
|
# EasyEngine version |
|
|
ee_version = "3.5.1" |
|
|
ee_version = "3.5.2" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# EasyEngine packages versions |
|
|
# EasyEngine packages versions |
|
@ -121,12 +121,14 @@ class EEVariables(): |
|
|
elif ee_platform_codename == 'trusty': |
|
|
elif ee_platform_codename == 'trusty': |
|
|
ee_php_repo = "ppa:ondrej/php" |
|
|
ee_php_repo = "ppa:ondrej/php" |
|
|
ee_php5_6 = ["php5.6-fpm", "php5.6-curl", "php5.6-gd", "php5.6-imap", |
|
|
ee_php5_6 = ["php5.6-fpm", "php5.6-curl", "php5.6-gd", "php5.6-imap", |
|
|
"php5.6-mcrypt", "php5.6-readline", "php5.6-common", |
|
|
"php5.6-mcrypt", "php5.6-readline", "php5.6-common", "php5.6-recode", |
|
|
"php5.6-mysql", "php5.6-cli", "php5.6-zip", "php5.6-xml"] |
|
|
"php5.6-mysql", "php5.6-cli", "php5.6-curl", "php5.6-mbstring", |
|
|
|
|
|
"php5.6-bcmath", "php5.6-mysql", "php5.6-opcache", "php5.6-zip", "php5.6-xml"] |
|
|
ee_php7_0 = ["php7.0-fpm", "php7.0-curl", "php7.0-gd", "php7.0-imap", |
|
|
ee_php7_0 = ["php7.0-fpm", "php7.0-curl", "php7.0-gd", "php7.0-imap", |
|
|
"php7.0-mcrypt", "php7.0-readline", "php7.0-common", |
|
|
"php7.0-mcrypt", "php7.0-readline", "php7.0-common", "php7.0-recode", |
|
|
"php7.0-mysql", "php7.0-cli", "php7.0-zip", "php7.0-xml"] |
|
|
"php7.0-mysql", "php7.0-cli", "php7.0-curl", "php7.0-mbstring", |
|
|
ee_php_extra = ["php-memcached", "php-imagick", "memcached", |
|
|
"php7.0-bcmath", "php7.0-mysql", "php7.0-opcache", "php7.0-zip", "php7.0-xml"] |
|
|
|
|
|
ee_php_extra = ["php-memcached", "php-imagick", "php-memcache", "memcached", |
|
|
"graphviz", "php-pear", "php-xdebug", "php-msgpack"] |
|
|
"graphviz", "php-pear", "php-xdebug", "php-msgpack"] |
|
|
elif ee_platform_distro == 'debian': |
|
|
elif ee_platform_distro == 'debian': |
|
|
if ee_platform_codename == 'wheezy': |
|
|
if ee_platform_codename == 'wheezy': |
|
@ -162,11 +164,16 @@ class EEVariables(): |
|
|
# Mail repo and packages |
|
|
# Mail repo and packages |
|
|
ee_mail_repo = ("deb http://http.debian.net/debian-backports {codename}" |
|
|
ee_mail_repo = ("deb http://http.debian.net/debian-backports {codename}" |
|
|
"-backports main".format(codename=ee_platform_codename)) |
|
|
"-backports main".format(codename=ee_platform_codename)) |
|
|
|
|
|
if ee_platform_codename != 'trusty': |
|
|
ee_mail = ["dovecot-core", "dovecot-imapd", "dovecot-pop3d", |
|
|
ee_mail = ["dovecot-core", "dovecot-imapd", "dovecot-pop3d", |
|
|
"dovecot-lmtpd", "dovecot-mysql", "dovecot-sieve", |
|
|
"dovecot-lmtpd", "dovecot-mysql", "dovecot-sieve", |
|
|
"dovecot-managesieved", "postfix-mysql", "php5-cgi", |
|
|
"dovecot-managesieved", "postfix-mysql", "php5-cgi", |
|
|
"php-gettext", "php-pear"] |
|
|
"php-gettext", "php-pear"] |
|
|
|
|
|
else: |
|
|
|
|
|
ee_mail = ["dovecot-core", "dovecot-imapd", "dovecot-pop3d", |
|
|
|
|
|
"dovecot-lmtpd", "dovecot-mysql", "dovecot-sieve", |
|
|
|
|
|
"dovecot-managesieved", "postfix-mysql", "php5.6-cgi", |
|
|
|
|
|
"php-gettext", "php-pear", "subversion"] |
|
|
|
|
|
|
|
|
# Mailscanner repo and packages |
|
|
# Mailscanner repo and packages |
|
|
ee_mailscanner_repo = () |
|
|
ee_mailscanner_repo = () |
|
|