-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
odd packages in minimal installation #1965
Comments
Hi I reproduce part of issue in debian, in may case nginx was not installed but roundcube and phpmyadmin yes. Why ? There is nothing to exclude phpmyadmin / roundcube from installer --phpfpm no Just not install php-fpm There is no exclude for phpmyadmin / roundube / php* With your command vesta installer still install next packages
So installer need argument like --php-deps no And add something like:
So if we not need apache / nginx for what we need phpmyadmin , roundcube and orthers, and all that install mysql-client and some orther dependencies. |
I see this better and phpmyadmin was excluded if mysql is not selected But in incorrect way because sed looking for capital letters So, that need be fixed, and we can add roundcube exclusion if dovecot not installed Edit--- So in debian 9 works apt-get install phpmyadmin and in debian 8 works apt-get install phpMyAdmin ? so need add sed twice to process $software Edit 2-- Can fixed with:
|
PHPMYADMIN need two exclustions in debian 9 and 10 was defined diferent If we not have apache instaled and not select php-fpm to use nginx + php-fpm we cant use phpmyadmin, php, roundcube, awstats and webanalizer so remove all This will fix #1965 I need check ubuntu installer and see if have similar problem
I ran
bash vst-install.sh --nginx no --apache no --phpfpm no --named yes --remi yes --vsftpd no --proftpd no --iptables no --fail2ban no --quota no --exim no --dovecot no --spamassassin no --clamav no --softaculous no --mysql no --postgresql no
in container with minimal Ubuntu 18.04 to use it only as a DNS slave.But nginx repos were added, nginx, roundcube etc. packages were installed. They are not needed and were explicitly disable by cli arguements.
The text was updated successfully, but these errors were encountered: