ufw: silince output of run scripts. fixes #5077

This commit is contained in:
Enno Boland 2017-01-07 23:19:10 +01:00
parent ec7a32e403
commit 8c6248134d
3 changed files with 3 additions and 3 deletions

View file

@ -1,3 +1,3 @@
#!/bin/sh
set -e
exec ufw disable 2>&1
exec ufw disable > /dev/null 2>&1

View file

@ -1,4 +1,4 @@
#!/bin/sh
set -e
ufw enable 2>&1
ufw enable > /dev/null 2>&1
exec chpst -b ufw pause

View file

@ -1,7 +1,7 @@
# Template file for 'ufw'
pkgname=ufw
version=0.35
revision=4
revision=5
hostmakedepends="python iptables"
depends="${hostmakedepends}"
conf_files="/etc/default/ufw /etc/ufw/ufw.conf"