Browse Source

Added ee stack install admin-tools

bugfixes
harshadyeola 10 years ago
parent
commit
1277000bf5
  1. 12
      bin/easyengine

12
bin/easyengine

@ -93,7 +93,8 @@ elif [ "$EE_FIRST" = "stack" ] || [ "$EE_FIRST" = "system" ]; then
# Display success message
ee_lib_echo "$EE_THIRD successfully installed"
elif [ "$EE_THIRD" = "" ] || [ "$EE_THIRD" = "web" ] || [ "$EE_THIRD" = "all" ]; then
elif [ "$EE_THIRD" = "" ] || [ "$EE_THIRD" = "web" ] || [ "$EE_THIRD" = "admin-tools" ] || [ "$EE_THIRD" = "all" ]; then
if [ "$EE_THIRD" = "" ] || [ "$EE_THIRD" = "web" ] || [ "$EE_THIRD" = "all" ]; then
# Setup NGINX/PHP/MySQL repository
ee_mod_repo_nginx
ee_mod_repo_php
@ -122,12 +123,15 @@ elif [ "$EE_FIRST" = "stack" ] || [ "$EE_FIRST" = "system" ]; then
# Initialize Git
ee_lib_git /etc/nginx/ /etc/php5/ /etc/mysql/ /etc/postfix "Initialize Git"
# Install Adminer/phpMyAdmin/WP-CLI/Utils
# Install WP-CLI
ee_ven_install_wpcli
fi
if [ "$EE_THIRD" = "" ] || [ "$EE_THIRD" = "web" ] || [ "$EE_THIRD" = "admin-tools" ] || [ "$EE_THIRD" = "all" ]; then
# Install Adminer/phpMyAdmin/Utils
ee_ven_install_adminer
ee_ven_install_phpmyadmin
ee_ven_install_wpcli
ee_ven_install_utils
fi
# Display success message
if [ "$EE_THIRD" != "all" ];then
ee_lib_echo "Successfully installed web server packages"

Loading…
Cancel
Save