Added sendmail installation to .homeinstall script so that hub can send email notifications

This commit is contained in:
Andrew Manning 2016-02-19 20:43:28 -05:00
parent 1db3409f36
commit f2d27d543d

View File

@ -225,6 +225,11 @@ function install_curl {
nocheck_install "curl" nocheck_install "curl"
} }
function install_sendmail {
print_info "installing sendmail..."
nocheck_install "sendmail"
}
function install_php { function install_php {
# openssl and mbstring are included in libapache2-mod-php5 # openssl and mbstring are included in libapache2-mod-php5
# to_to: php5-suhosin # to_to: php5-suhosin
@ -823,6 +828,7 @@ sslconf=/etc/apache2/sites-available/default-ssl.conf
check_config check_config
update_upgrade update_upgrade
install_curl install_curl
install_sendmail
install_apache install_apache
install_php install_php
install_mysql install_mysql