mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
Fixed fwl
function in firewalld
plugin when sources
used (#7011)
`firewall-cmd --get-active-zones` returns something like this: ``` dmz sources: ipset:dmz-hosts public interfaces: eth0 ``` if zone binding is based on source ips, so strings with `sources: ...` should be excluded along with `interfaces: ...` to get zones list.
This commit is contained in:
parent
e7c9bf8d66
commit
2b6434e879
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ alias fwrp="sudo firewall-cmd --runtime-to-permanent"
|
||||||
function fwl () {
|
function fwl () {
|
||||||
# converts output to zsh array ()
|
# converts output to zsh array ()
|
||||||
# @f flag split on new line
|
# @f flag split on new line
|
||||||
zones=("${(@f)$(sudo firewall-cmd --get-active-zones | grep -v interfaces)}")
|
zones=("${(@f)$(sudo firewall-cmd --get-active-zones | grep -v 'interfaces\|sources')}")
|
||||||
|
|
||||||
for i in $zones; do
|
for i in $zones; do
|
||||||
sudo firewall-cmd --zone $i --list-all
|
sudo firewall-cmd --zone $i --list-all
|
||||||
|
|
Loading…
Reference in a new issue