comment out some stuff

This commit is contained in:
2021-07-18 14:29:26 -06:00
parent 4eba1bb195
commit d0b1bae345
5 changed files with 264 additions and 4 deletions

View File

@ -0,0 +1,16 @@
# Example Usage
# ssh user@host "sudo -n bash -s" -- < ./commands/nginx/nginx-setup.sh
if [ "$1" == "-h" ]; then
echo "Usage:"
echo " ./nginx-setup.sh"
exit 0
fi
export DEBIAN_FRONTEND="noninteractive"
apt-get update
apt-get dist-upgrade
apt-get -y install nginx
exit 0