Browse Source

Dont call apt-get autoremove for wp-cli and phpmyadmin

old-stable
Mitesh Shah 11 years ago
parent
commit
332f36bcbf
  1. 6
      bin/easyengine

6
bin/easyengine

@ -130,6 +130,9 @@ elif [ "$EE_FIRST" = "stack" ] || [ "$EE_FIRST" = "system" ]; then
# Remove/Purge NGINX/PHP/MySQL/Postfix package # Remove/Purge NGINX/PHP/MySQL/Postfix package
if [ "$EE_THIRD" = "nginx" ] || [ "$EE_THIRD" = "php" ] || [ "$EE_THIRD" = "mysql" ] || [ "$EE_THIRD" = "postfix" ]; then if [ "$EE_THIRD" = "nginx" ] || [ "$EE_THIRD" = "php" ] || [ "$EE_THIRD" = "mysql" ] || [ "$EE_THIRD" = "postfix" ]; then
ee_mod_remove_$EE_THIRD ee_mod_remove_$EE_THIRD
# Execute: apt-get autoremove
ee_lib_autoremove
fi fi
# Remove/Purge Adminer/phpMyAdmin/WP-CLI/Utils # Remove/Purge Adminer/phpMyAdmin/WP-CLI/Utils
@ -137,9 +140,6 @@ elif [ "$EE_FIRST" = "stack" ] || [ "$EE_FIRST" = "system" ]; then
ee_ven_remove_$EE_THIRD ee_ven_remove_$EE_THIRD
fi fi
# Execute: apt-get autoremove
ee_lib_autoremove
# Display success message # Display success message
if [ "$EE_SECOND" = "remove" ];then if [ "$EE_SECOND" = "remove" ];then
ee_lib_echo "$EE_THIRD successfully removed" ee_lib_echo "$EE_THIRD successfully removed"

Loading…
Cancel
Save