dev-scripts/install/scripts/install-apache2.sh

15 lines
263 B
Bash
Raw Normal View History

2020-09-03 19:20:55 +00:00
#!/bin/sh
if [ "$apache2_version" != 'latest' ] ; then
echo 'ERROR: unable to install Apache2 - only '"'latest'"' version currently supported'
exit 30
fi
ssh -T $ssh << EOSSH
echo "Installing Apache2"
apt install -y apache2
ufw allow in "WWW Full"
EOSSH