Browse Source

Fixes #306

old-stable
gau1991 11 years ago
parent
commit
4c204aeca2
  1. 3
      bin/easyengine
  2. 29
      bin/install
  3. 3
      bin/update

3
bin/easyengine

@ -148,6 +148,9 @@ elif [ "$EE_FIRST" = "stack" ] || [ "$EE_FIRST" = "system" ]; then
ee_lib_error "Found installed Dovecot Packages server, exit status=" 1
fi
# Make hostname as FQDN
ee_lib_check_fqdn $(hostname -f)
# Install Dovecot
ee_mod_install_dovecot

29
bin/install

@ -82,32 +82,6 @@ function ee_lib_package_check()
done
}
# Check hostname is FQDN or not. If not set it
function ee_lib_check_fqdn()
{
case $1 in
*.*)
if [ "$EE_FQDN" != "" ];then
echo $EE_FQDN > /etc/hostname
if [ "$EE_LINUX_DISTRO" == "Debian" ];then
grep $EE_FQDN /etc/hosts &>> $EE_INSTALL_LOG
if [ $? -ne 0 ]; then
sed -i "1i\127.0.0.1 $EE_FQDN" /etc/hosts \
|| ee_lib_error "Unable setup hostname = " $?
fi
/etc/init.d/hostname.sh start &>> $EE_INSTALL_LOG
else
service hostname restart &>> $EE_INSTALL_LOG
fi
echo "hostname = $(hostname -f)" &>> $EE_INSTALL_LOG
fi
;;
*)
read -p "Enter hostname [FQDN]: " EE_FQDN
ee_lib_check_fqdn $EE_FQDN
;;
esac
}
# Pre checks to avoid later screw ups
# Checking EasyEngine (ee) log directory
@ -211,9 +185,6 @@ fi
cp -a /tmp/easyengine/docs/man/ee.8 /usr/share/man/man8/ &>> $EE_INSTALL_LOG \
|| ee_lib_error "Unable to copy EasyEngine (ee) man page, exit status = " $?
# Make hostname as FQDN
ee_lib_check_fqdn $(hostname -f)
# Git config settings
GIT_USER_NAME=$(git config user.name)
GIT_USER_EMAIL=$(git config user.email)

3
bin/update

@ -395,9 +395,6 @@ if [[ $EE_CURRENT_VERSION < $EE_LATEST_VERSION ]]; then
done
fi
# Make hostname as FQDN
ee_lib_check_fqdn $(hostname -f)
if [[ $EE_CURRENT_VERSION = 2.0.0 ]]; then
dpkg --get-selections | grep -v deinstall | grep php5-fpm &>> $EE_UPDATE_LOG
if [ $? -eq 0 ]; then

Loading…
Cancel
Save