13 lines
260 B
Bash
Executable file
13 lines
260 B
Bash
Executable file
#!/bin/bash
|
|
# list all redhat/networkmanager connections without ipv6 privacy
|
|
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
|
|
done
|