2017-01-12 14:40:49 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# list all redhat/networkmanager connections without ipv6 privacy
|
|
|
|
set -e
|
|
|
|
cd /etc/sysconfig/network-scripts
|
|
|
|
for c in ifcfg-*; do
|
2017-02-06 13:28:10 +01:00
|
|
|
if [ "$c" == "ifcfg-lo" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
2017-01-12 14:40:49 +01:00
|
|
|
if ! grep -q IPV6_PRIVACY=rfc3041 $c; then
|
|
|
|
echo $c
|
|
|
|
fi
|
|
|
|
done
|