]> git.phdru.name Git - ansible.git/commitdiff
Style: `ip -o` -> `ip --oneline`
authorOleg Broytman <phd@phdru.name>
Mon, 1 Aug 2022 21:38:09 +0000 (00:38 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 1 Aug 2022 21:38:09 +0000 (00:38 +0300)
playbooks/roles/debian/firewall/files/etc/network/functions.phd
playbooks/roles/redhat/firewall/files/etc/network/functions.phd

index 613089b4dcf8e3e70c45e5a76c5c310f082d60d5..8d4e865e819f1892ee0ae6388edebe4093aa6781 100644 (file)
@@ -56,6 +56,6 @@ start_firewall() {
    $IPTABLES -A INPUT -p tcp --sport 1024:65535  -m state --state ESTABLISHED,RELATED -j ACCEPT
    $IPTABLES -A INPUT -p tcp --dport 1024:65535  -m state --state ESTABLISHED,RELATED -j ACCEPT
 
-   MY_IP=$(ip -o -4 address show up | awk '{split($4,a,/\//); if (a[1] != "127.0.0.1") print a[1]}')
+   MY_IP=$(ip --oneline -4 address show up | awk '{split($4,a,/\//); if (a[1] != "127.0.0.1") print a[1]}')
    for ip in $MY_IP; do my_ip "$ip"; done
 }
index 613089b4dcf8e3e70c45e5a76c5c310f082d60d5..8d4e865e819f1892ee0ae6388edebe4093aa6781 100644 (file)
@@ -56,6 +56,6 @@ start_firewall() {
    $IPTABLES -A INPUT -p tcp --sport 1024:65535  -m state --state ESTABLISHED,RELATED -j ACCEPT
    $IPTABLES -A INPUT -p tcp --dport 1024:65535  -m state --state ESTABLISHED,RELATED -j ACCEPT
 
-   MY_IP=$(ip -o -4 address show up | awk '{split($4,a,/\//); if (a[1] != "127.0.0.1") print a[1]}')
+   MY_IP=$(ip --oneline -4 address show up | awk '{split($4,a,/\//); if (a[1] != "127.0.0.1") print a[1]}')
    for ip in $MY_IP; do my_ip "$ip"; done
 }