- package now conflicts with nodogsplash2 - properly close heredoc block - quiet uci when removing previous firewall hook Signed-off-by: Moritz Warning <moritzwarning@web.de>
9 lines
216 B
Bash
9 lines
216 B
Bash
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF
|
|
delete firewall.nodogsplash
|
|
set firewall.nodogsplash=include
|
|
set firewall.nodogsplash.type=script
|
|
set firewall.nodogsplash.path=/usr/lib/nodogsplash/restart.sh
|
|
commit firewall
|
|
EOF
|