diff options
author | Bill Nottingham <notting@redhat.com> | 2009-08-14 15:03:24 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2009-08-21 11:16:16 -0400 |
commit | 0e315c10bf0439c5f8eb0dcfc9b0637679671511 (patch) | |
tree | b02213508b62a1e4526dbebf6f0a2aedec1a40db /sysconfig | |
parent | 8ae1042e960b6474f9fe5dc99d7fae2adee319e3 (diff) | |
download | initscripts-0e315c10bf0439c5f8eb0dcfc9b0637679671511.tar initscripts-0e315c10bf0439c5f8eb0dcfc9b0637679671511.tar.gz initscripts-0e315c10bf0439c5f8eb0dcfc9b0637679671511.tar.bz2 initscripts-0e315c10bf0439c5f8eb0dcfc9b0637679671511.tar.xz initscripts-0e315c10bf0439c5f8eb0dcfc9b0637679671511.zip |
Remove unused (and broken) functions.
Diffstat (limited to 'sysconfig')
-rwxr-xr-x | sysconfig/network-scripts/init.ipv6-global | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/sysconfig/network-scripts/init.ipv6-global b/sysconfig/network-scripts/init.ipv6-global index c7f19b6b..8f402022 100755 --- a/sysconfig/network-scripts/init.ipv6-global +++ b/sysconfig/network-scripts/init.ipv6-global @@ -158,24 +158,6 @@ case $ACTION in esac ;; - restart|reload) - # do nothing, will be handled by main script - ;; - - showsysctl) - # Run only basic tests, no module is loaded, if not ok, skip IPv6 initialization - ipv6_test testonly || exit 0 - - # Show sysctl switches - sysctl net.ipv6.conf.default |awk -F '.' '{ print gensub(" =.*","","G",$5) }' | while read switch; do - for i in /proc/sys/net/ipv6/conf/* ; do - interface=${i##*/} - sysctl net.ipv6.conf.$interface.$switch - done - echo - done - ;; - *) echo $"Usage: $0 {start|stop|reload|restart|showsysctl}" exit 1 |