diff options
author | Bill Nottingham <notting@redhat.com> | 2005-04-15 21:36:28 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2005-04-15 21:36:28 +0000 |
commit | 94f069227c13ac476ae53e875fedbec35abfd549 (patch) | |
tree | b2e40192c8e549a22bde60ba13f758dbf927866d | |
parent | ae3991e698930dfa6eb23d14de2a1e7a62d300c5 (diff) | |
download | initscripts-94f069227c13ac476ae53e875fedbec35abfd549.tar initscripts-94f069227c13ac476ae53e875fedbec35abfd549.tar.gz initscripts-94f069227c13ac476ae53e875fedbec35abfd549.tar.bz2 initscripts-94f069227c13ac476ae53e875fedbec35abfd549.tar.xz initscripts-94f069227c13ac476ae53e875fedbec35abfd549.zip |
get rid of excess messages
-rw-r--r-- | sysconfig/network-scripts/network-functions-ipv6 | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/sysconfig/network-scripts/network-functions-ipv6 b/sysconfig/network-scripts/network-functions-ipv6 index 944577ec..153c05ea 100644 --- a/sysconfig/network-scripts/network-functions-ipv6 +++ b/sysconfig/network-scripts/network-functions-ipv6 @@ -137,11 +137,6 @@ ipv6_log() { fi ;; 'syslog') - # note: logger resides in /usr/bin, but not used by default - if ! [ -x logger ]; then - echo $"ERROR: [ipv6_log] Syslog is chosen, but binary 'logger' doesn't exist or isn't executable" >/dev/stderr - return 3 - fi if [ -z "$txt_name" ]; then logger -p $facility.$priority $message else @@ -190,16 +185,6 @@ ipv6_test() { return 2 fi - if ! [ -x /sbin/ip ]; then - ipv6_log $"Utility 'ip' (package: iproute) doesn't exist or isn't executable - stop" crit $fn - return 2 - fi - - if ! [ -x /sbin/sysctl ]; then - ipv6_log $"Utility 'sysctl' (package: procps) doesn't exist or isn't executable - stop" crit $fn - return 2 - fi - return 0 } |