Browse Source

Remove EE Help Messages From System Options

old-stable
Mitesh Shah 12 years ago
parent
commit
17e8fc5ceb
  1. 74
      usr/local/sbin/easyengine

74
usr/local/sbin/easyengine

@ -1,43 +1,12 @@
#!/bin/bash #!/bin/bash
# Help Function
EngineHelp()
{
echo
echo "Usage: `basename $0` [OPTION] [ARGUMENT]..."
echo
echo "OPTION:"
echo " `basename $0` [system] [install|remove|purge] [nginx|php|mysql|pma|postfix|all]"
echo " `basename $0` [system] [config] [set|get] [memory|timeout]"
echo
echo " `basename $0` [site] [list|listall]"
echo " `basename $0` [site] [show|info] [sitename]"
echo
echo " `basename $0` [site] [create|update] [html|php] [sitename]"
echo " `basename $0` [site] [create|update] [wpsingle|wpsubdir|wpsubdomain] [basic|w3tc|wpsc|wpfc] [sitename]"
echo
echo " `basename $0` [site] [delete] [files|db|all]"
echo
echo " `basename $0` [update] "
echo
echo "Exit status:"
echo " 0 if OK,"
echo " 100 sudo privilege required,"
echo " 101 command failed to execute,"
}
# Make Variables Available For Later Use # Make Variables Available For Later Use
LOGDIR=/var/log/easyengine LOGDIR=/var/log/easyengine
ERRORLOG=/var/log/easyengine/error.log ERRORLOG=/var/log/easyengine/error.log
# Check Auto Assume Yes To Apt-Get # Check Auto Assume Yes Or No To Apt-Get
grep apt-get-assume-yes /etc/easyengine/ee.conf | grep -i true &>> /dev/null grep apt-get-assume-yes /etc/easyengine/ee.conf | grep -i true &>> /dev/null
if [ $? -eq 0 ] if [ $? -eq 0 ]
then then
@ -47,7 +16,6 @@ else
fi fi
# Capture Errors # Capture Errors
OwnError() OwnError()
{ {
@ -118,6 +86,7 @@ COMMONNGINX()
{ {
# Personal Settings For Nginx # Personal Settings For Nginx
echo -e "\033[34m Updating Nginx Configuration Files... \e[0m" echo -e "\033[34m Updating Nginx Configuration Files... \e[0m"
# Check Directory Exist # Check Directory Exist
if [ ! -d /etc/nginx/conf.d ] if [ ! -d /etc/nginx/conf.d ]
then then
@ -150,6 +119,7 @@ INSTALLPHP()
CHANGEPHPSOCKET() CHANGEPHPSOCKET()
{ {
# Change PHP Fastcgi Socket # Change PHP Fastcgi Socket
echo -e "\033[34m Change PHP Fastcgi Socket... \e[0m"
sed -i "s'listen = /var/run/php5-fpm.sock'listen = 127.0.0.1:9000'" /etc/php5/fpm/pool.d/www.conf sed -i "s'listen = /var/run/php5-fpm.sock'listen = 127.0.0.1:9000'" /etc/php5/fpm/pool.d/www.conf
} }
@ -349,9 +319,9 @@ EEGITINIT()
# Initialise Git # Initialise Git
echo -e "\033[34m Initialise Git On $EEGITDIR... \e[0m" echo -e "\033[34m Initialise Git On $EEGITDIR... \e[0m"
cd $EEGITDIR cd $EEGITDIR
git init git init || OwnError "Unable To Initialise Git On $EEGITDIR"
git add . git add . && git commit -am "Initialise Git On $EEGITDIR" \
git commit -am "Initialise Git On $EEGITDIR" || OwnError "Unable To Git Commit On $EEGITDIR"
} }
EEGITCOMMIT() EEGITCOMMIT()
@ -464,6 +434,7 @@ PHPSTART()
if [ "$1" = "system" ] if [ "$1" = "system" ]
then then
# Easy Engine Install # Easy Engine Install
if [ "$2" = "install" ] if [ "$2" = "install" ]
then then
@ -640,8 +611,6 @@ then
# Display Success Message # Display Success Message
echo -e "\033[34m Nginx PHP5 MySQL PMA Postfix Successfully Installed \e[0m" echo -e "\033[34m Nginx PHP5 MySQL PMA Postfix Successfully Installed \e[0m"
else
EngineHelp
fi fi
@ -723,8 +692,6 @@ then
# Display Success Message # Display Success Message
echo -e "\033[34m Nginx PHP5 MySQL PMA Postfix Successfully Removed \e[0m" echo -e "\033[34m Nginx PHP5 MySQL PMA Postfix Successfully Removed \e[0m"
else
EngineHelp
fi fi
@ -733,7 +700,7 @@ then
then then
if [ "$3" = "nginx" ] if [ "$3" = "nginx" ]
then then
# Purge Nginx # Purge Nginx
PURGENGINX PURGENGINX
@ -745,7 +712,7 @@ then
echo -e "\033[34m Nginx Successfully Purged \e[0m" echo -e "\033[34m Nginx Successfully Purged \e[0m"
elif [ "$3" = "php" ] elif [ "$3" = "php" ]
then then
# Purge PHP5 # Purge PHP5
PURGEPHP PURGEPHP
@ -806,18 +773,31 @@ then
# Display Success Message # Display Success Message
echo -e "\033[34m Nginx PHP5 MySQL PMA Postfix Successfully Purged \e[0m" echo -e "\033[34m Nginx PHP5 MySQL PMA Postfix Successfully Purged \e[0m"
else
EngineHelp
fi fi
# Easy Engine Help # Easy Engine Config
else elif [ "$2" = "config" ]
EngineHelp then
if [ "$3" = "set" ]
then
echo "Under Developments"
elif [ "$3" = "get" ]
then
echo "Under Developments"
fi
fi fi
# Easy Engine Site Settings # Easy Engine Site Settings
elif [ "$1" = "site" ] elif [ "$1" = "site" ]
then then

Loading…
Cancel
Save