~asanjar/charms/trusty/hdp-hadoop/test

« back to all changes in this revision

Viewing changes to hooks/test/hdp_scripts/hdp_manual_install_rpm_helper_files-2.1.1.385/configuration_files/ganglia/objects/checkGmetad.sh

  • Committer: amir sanjar
  • Date: 2014-07-21 19:53:44 UTC
  • Revision ID: amir.sanjar@canonical.com-20140721195344-a23z0lrebqzhl167
namenode & data node initialization

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
#/*
4
 
# * Licensed to the Apache Software Foundation (ASF) under one
5
 
# * or more contributor license agreements.  See the NOTICE file
6
 
# * distributed with this work for additional information
7
 
# * regarding copyright ownership.  The ASF licenses this file
8
 
# * to you under the Apache License, Version 2.0 (the
9
 
# * "License"); you may not use this file except in compliance
10
 
# * with the License.  You may obtain a copy of the License at
11
 
# *
12
 
# *     http://www.apache.org/licenses/LICENSE-2.0
13
 
# *
14
 
# * Unless required by applicable law or agreed to in writing, software
15
 
# * distributed under the License is distributed on an "AS IS" BASIS,
16
 
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
 
# * See the License for the specific language governing permissions and
18
 
# * limitations under the License.
19
 
# */
20
 
 
21
 
cd `dirname ${0}`;
22
 
 
23
 
# Get all our common constants etc. set up.
24
 
source ./gmetadLib.sh;
25
 
 
26
 
# Before checking gmetad, check rrdcached.
27
 
./checkRrdcached.sh;
28
 
 
29
 
gmetadRunningPid=`getGmetadRunningPid`;
30
 
 
31
 
if [ -n "${gmetadRunningPid}" ]
32
 
then
33
 
  echo "${GMETAD_BIN} running with PID ${gmetadRunningPid}";
34
 
else
35
 
  echo "Failed to find running ${GMETAD_BIN}";
36
 
  exit 1;
37
 
fi