add a bash function ufw_allow which calls 'ufw allow' but hides its totally useless output

This commit is contained in:
Joshua Tauberer 2014-05-01 19:35:18 +00:00
parent 66269f910f
commit e413680f62
5 changed files with 12 additions and 7 deletions

View File

@ -43,5 +43,5 @@ chown -R $STORAGE_USER.$STORAGE_USER $STORAGE_ROOT/dns
# Permit DNS queries on TCP/UDP in the firewall.
ufw allow domain
ufw_allow domain

View File

@ -19,3 +19,8 @@ function apt_install {
DEBIAN_FRONTEND=noninteractive apt-get -qq -y install $PACKAGES > /dev/null;
}
function ufw_allow {
# ufw has completely unhelpful output
ufw allow $1 > /dev/null;
}

View File

@ -234,7 +234,7 @@ service postfix restart
service dovecot restart
# Allow mail-related ports in the firewall.
ufw allow smtp
ufw allow submission
ufw allow imaps
ufw_allow smtp
ufw_allow submission
ufw_allow imaps

View File

@ -35,6 +35,6 @@ apt_install ntp fail2ban
# Turn on the firewall. First allow incoming SSH, then turn on the firewall.
# Other ports will be opened at the point where we set up those services.
apt_install ufw
ufw allow ssh;
ufw_allow ssh;
ufw --force enable;

View File

@ -39,6 +39,6 @@ service nginx restart
service php-fastcgi restart
# Open ports.
ufw allow http
ufw allow https
ufw_allow http
ufw_allow https