From 9aab5d5147b3149ca07fb5ce1602434265be5f20 Mon Sep 17 00:00:00 2001 From: neingeist Date: Mon, 6 Feb 2017 13:28:10 +0100 Subject: [PATCH] connections-without-ipv6-privacy: skip lo --- connections-without-ipv6-privacy | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/connections-without-ipv6-privacy b/connections-without-ipv6-privacy index eeff7dc..f77393d 100755 --- a/connections-without-ipv6-privacy +++ b/connections-without-ipv6-privacy @@ -3,6 +3,10 @@ set -e cd /etc/sysconfig/network-scripts for c in ifcfg-*; do + if [ "$c" == "ifcfg-lo" ]; then + continue + fi + if ! grep -q IPV6_PRIVACY=rfc3041 $c; then echo $c fi