Apache2
This commit is contained in:
parent
a6cbf0dc65
commit
641a576e24
|
@ -332,7 +332,7 @@ function install_dokuwiki {
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
apt-get -yq remove --purge apache-bin*
|
apt-get -yq remove --purge apache2-bin*
|
||||||
if [ -d /etc/apache2 ]; then
|
if [ -d /etc/apache2 ]; then
|
||||||
rm -rf /etc/apache2
|
rm -rf /etc/apache2
|
||||||
echo $'Removed Apache installation after Dokuwiki install'
|
echo $'Removed Apache installation after Dokuwiki install'
|
||||||
|
|
|
@ -822,7 +822,7 @@ function install_searx {
|
||||||
apt-get -yq install git build-essential libxslt-dev python-dev python-virtualenv zlib1g-dev uwsgi uwsgi-plugin-python imagemagick
|
apt-get -yq install git build-essential libxslt-dev python-dev python-virtualenv zlib1g-dev uwsgi uwsgi-plugin-python imagemagick
|
||||||
apt-get -yq install apache2-utils
|
apt-get -yq install apache2-utils
|
||||||
|
|
||||||
apt-get -yq remove --purge apache-bin*
|
apt-get -yq remove --purge apache2-bin*
|
||||||
if [ -d /etc/apache2 ]; then
|
if [ -d /etc/apache2 ]; then
|
||||||
rm -rf /etc/apache2
|
rm -rf /etc/apache2
|
||||||
echo $'Removed Apache installation'
|
echo $'Removed Apache installation'
|
||||||
|
|
|
@ -1041,7 +1041,7 @@ function image_setup_utils {
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
chroot "$rootdir" apt-get -yq install apt-transport-https
|
chroot "$rootdir" apt-get -yq install apt-transport-https
|
||||||
chroot "$rootdir" apt-get -yq remove --purge apache-bin*
|
chroot "$rootdir" apt-get -yq remove --purge apache2-bin*
|
||||||
chroot "$rootdir" apt-get -yq dist-upgrade
|
chroot "$rootdir" apt-get -yq dist-upgrade
|
||||||
chroot "$rootdir" apt-get -yq install ca-certificates
|
chroot "$rootdir" apt-get -yq install ca-certificates
|
||||||
chroot "$rootdir" apt-get -yq install apt-utils
|
chroot "$rootdir" apt-get -yq install apt-utils
|
||||||
|
|
|
@ -161,7 +161,7 @@ function install_mariadb {
|
||||||
debconf-set-selections <<< "mariadb-server mariadb-server/root_password password $MARIADB_PASSWORD"
|
debconf-set-selections <<< "mariadb-server mariadb-server/root_password password $MARIADB_PASSWORD"
|
||||||
debconf-set-selections <<< "mariadb-server mariadb-server/root_password_again password $MARIADB_PASSWORD"
|
debconf-set-selections <<< "mariadb-server mariadb-server/root_password_again password $MARIADB_PASSWORD"
|
||||||
apt-get -yq install mariadb-server mariadb-client
|
apt-get -yq install mariadb-server mariadb-client
|
||||||
apt-get -yq remove --purge apache-bin*
|
apt-get -yq remove --purge apache2-bin*
|
||||||
if [ -d /etc/apache2 ]; then
|
if [ -d /etc/apache2 ]; then
|
||||||
rm -rf /etc/apache2
|
rm -rf /etc/apache2
|
||||||
echo $'Removed Apache installation after MariaDB install'
|
echo $'Removed Apache installation after MariaDB install'
|
||||||
|
|
|
@ -209,7 +209,7 @@ function initial_setup {
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
apt-get -yq remove --purge apache-bin*
|
apt-get -yq remove --purge apache2-bin*
|
||||||
apt-get -yq dist-upgrade
|
apt-get -yq dist-upgrade
|
||||||
apt-get -yq install ca-certificates
|
apt-get -yq install ca-certificates
|
||||||
apt-get -yq install apt-utils
|
apt-get -yq install apt-utils
|
||||||
|
|
Loading…
Reference in New Issue