blob: 84b5c618724ea4468eea4b85aab8440b12e447d8 [file] [log] [blame]
#!/bin/sh
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# ping is started as subprocess which runs for '$1' seconds
echo "[ping.sh] Blocking for $1 seconds ..."
# see EXEC-52 - option must appear after the hostname!
if test "$(uname -s)" = "HP-UX"
then
ping 127.0.0.1 -n $1
else
ping -c $1 127.0.0.1
fi