ufw: silince output of run scripts. fixes #5077
This commit is contained in:
parent
ec7a32e403
commit
8c6248134d
3 changed files with 3 additions and 3 deletions
|
@ -1,3 +1,3 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
exec ufw disable 2>&1
|
||||
exec ufw disable > /dev/null 2>&1
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
ufw enable 2>&1
|
||||
ufw enable > /dev/null 2>&1
|
||||
exec chpst -b ufw pause
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue