aboutsummaryrefslogtreecommitdiff
path: root/share/hydra/whereis
blob: 687b2808532473859cb2d737d97f9c284136a80d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/bin/bash
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public
# License along with this program.  If not, see
# <http://www.gnu.org/licenses/>.

# Load.
source $APP_BASE/lib/hydra/functions || exit 1
hydra_config_load

# Parameters
BASENAME="`basename $0`"
LAYER="$1"
DOMAIN="`hydra $HYDRA config domain`"

# Checks
if [ -z "$LAYER" ]; then
  echo "usage: $BASENAME <subdomain>"
  exit 1
elif [ -z "$DOMAIN" ]; then
  echo "Please set 'domain' at $HYDRA hydra config."
  exit 1
fi

# Puppet config
echo "Puppet config at $PUPPET"
echo "----------------------------------------------------------------------------------"
echo ""

# Is it a node?
if [ -e "$PUPPET/manifests/nodes/$LAYER.pp" ]; then
  echo "Defined as a node at $PUPPET/manifests/nodes/$LAYER.pp"

  if [ -e "$PUPPET/hiera/production/domain/$DOMAIN/node/$LAYER.$DOMAIN.yaml" ]; then
    echo "Configuration:"
    echo ""
    grep "nodo::role:"     $PUPPET/hiera/production/domain/$DOMAIN/node/$LAYER.$DOMAIN.yaml
    grep "nodo::location:" $PUPPET/hiera/production/domain/$DOMAIN/node/$LAYER.$DOMAIN.yaml
  fi
fi

# Is it a website?
if [ -e "$PUPPET/modules/site_websites" ] && \
     grep -R -e "apache::site" "$PUPPET/modules/site_websites/manifests/" | grep -q "$LAYER" ; then
  MANIFEST="$(cd $PUPPET && grep -R -e "apache::site" "modules/site_websites/manifests/" | grep "$LAYER" | cut -d : -f 1)"

  echo "Defined as a website on $MANIFEST:"
  echo ""
  sed -n -e "/apache::site { \"$LAYER\":/,/ }/ p" $PUPPET/$MANIFEST
fi

# DNS config
if [ -e "$HYDRA_FOLDER/dns/$DOMAIN.conf" ]; then
  echo ""
  echo "DNS configuration at $HYDRA_FOLDER/dns/$DOMAIN.conf"
  echo "----------------------------------------------------------------------------------"
  echo ""

  RESPONSE="`grep -e "^$LAYER " $HYDRA_FOLDER/dns/$DOMAIN.conf`"

  # Turn off pathname expansion so expansion can work properly
  set -f
  if [ -z "$RESPONSE" ]; then
    RESPONSE="`grep -e '^* ' $HYDRA_FOLDER/dns/$DOMAIN.conf`"
  fi

  echo $RESPONSE
fi

# DNS
echo ""
echo "DNS response"
echo "----------------------------------------------------------------------------------"
echo ""
dig +noauthority +nocomments +nocmd +nostats +noadditional $LAYER.$DOMAIN

# GeoIP
if which geoiplookup &> /dev/null; then
  echo ""
  echo "GeoIP response"
  echo "----------------------------------------------------------------------------------"
  echo ""
  geoiplookup $LAYER.$DOMAIN
fi

# Service status
echo ""
echo "Ping response"
echo "----------------------------------------------------------------------------------"
echo ""
ping -q -n -c 1 $LAYER.$DOMAIN | tail -n 2