forked from openstack/devstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.sh
More file actions
executable file
·213 lines (187 loc) · 5.45 KB
/
info.sh
File metadata and controls
executable file
·213 lines (187 loc) · 5.45 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
#!/usr/bin/env bash
# info.sh - Produce a report on the state of devstack installs
#
# Output fields are separated with '|' chars
# Output types are git,localrc,os,pip,pkg:
# git|<project>|<branch>[<shaq>]
# localtc|<var>=<value>
# os|<var>=<value>
# pip|<package>|<version>
# pkg|<package>|<version>
function usage {
echo "$0 - Report on the devstack configuration"
echo ""
echo "Usage: $0"
exit 1
}
if [ "$1" = "-h" ]; then
usage
fi
# Keep track of the current directory
TOOLS_DIR=$(cd $(dirname "$0") && pwd)
TOP_DIR=$(cd $TOOLS_DIR/..; pwd)
cd $TOP_DIR
# Source params
source $TOP_DIR/stackrc
DEST=${DEST:-/opt/stack}
FILES=$TOP_DIR/files
if [[ ! -d $FILES ]]; then
echo "ERROR: missing devstack/files - did you grab more than just stack.sh?"
exit 1
fi
# Repos
# -----
# git_report <dir>
function git_report() {
local dir=$1
local proj ref branch head
if [[ -d $dir/.git ]]; then
pushd $dir >/dev/null
proj=$(basename $dir)
ref=$(git symbolic-ref HEAD)
branch=${ref##refs/heads/}
head=$(git show-branch --sha1-name $branch | cut -d' ' -f1)
echo "git|${proj}|${branch}${head}"
popd >/dev/null
fi
}
for i in $DEST/*; do
if [[ -d $i ]]; then
git_report $i
fi
done
# OS
# --
GetOSInfo() {
# Figure out which vedor we are
if [ -r /etc/lsb-release ]; then
. /etc/lsb-release
VENDORNAME=$DISTRIB_ID
RELEASE=$DISTRIB_RELEASE
else
for r in RedHat CentOS Fedora; do
VENDORPKG="`echo $r | tr [:upper:] [:lower:]`-release"
VENDORNAME=$r
RELEASE=`rpm -q --queryformat '%{VERSION}' $VENDORPKG`
if [ $? = 0 ]; then
break
fi
VENDORNAME=""
done
# Get update level
if [ -n "`grep Update /etc/redhat-release`" ]; then
# Get update
UPDATE=`cat /etc/redhat-release | sed s/.*Update\ // | sed s/\)$//`
else
# Assume update 0
UPDATE=0
fi
fi
echo "os|vendor=$VENDORNAME"
echo "os|release=$RELEASE"
if [ -n "$UPDATE" ]; then
echo "os|version=$UPDATE"
fi
}
GetOSInfo
# Packages
# --------
# - We are going to check packages only for the services needed.
# - We are parsing the packages files and detecting metadatas.
# - If we have the meta-keyword dist:DISTRO or
# dist:DISTRO1,DISTRO2 it will be installed only for those
# distros (case insensitive).
function get_packages() {
local file_to_parse="general"
local service
for service in ${ENABLED_SERVICES//,/ }; do
# Allow individual services to specify dependencies
if [[ -e $FILES/apts/${service} ]]; then
file_to_parse="${file_to_parse} $service"
fi
if [[ $service == n-* ]]; then
if [[ ! $file_to_parse =~ nova ]]; then
file_to_parse="${file_to_parse} nova"
fi
elif [[ $service == g-* ]]; then
if [[ ! $file_to_parse =~ glance ]]; then
file_to_parse="${file_to_parse} glance"
fi
elif [[ $service == key* ]]; then
if [[ ! $file_to_parse =~ keystone ]]; then
file_to_parse="${file_to_parse} keystone"
fi
fi
done
for file in ${file_to_parse}; do
local fname=${FILES}/apts/${file}
local OIFS line package distros distro
[[ -e $fname ]] || { echo "missing: $fname"; exit 1; }
OIFS=$IFS
IFS=$'\n'
for line in $(<${fname}); do
if [[ $line =~ (.*)#.*dist:([^ ]*) ]]; then # We are using BASH regexp matching feature.
package=${BASH_REMATCH[1]}
distros=${BASH_REMATCH[2]}
for distro in ${distros//,/ }; do #In bash ${VAR,,} will lowecase VAR
[[ ${distro,,} == ${DISTRO,,} ]] && echo $package
done
continue
fi
echo ${line%#*}
done
IFS=$OIFS
done
}
for p in $(get_packages); do
ver=$(dpkg -s $p 2>/dev/null | grep '^Version: ' | cut -d' ' -f2)
echo "pkg|${p}|${ver}"
done
# Pips
# ----
function get_pips() {
cat $FILES/pips/* | uniq
}
# Pip tells us what is currently installed
FREEZE_FILE=$(mktemp --tmpdir freeze.XXXXXX)
pip freeze >$FREEZE_FILE 2>/dev/null
# Loop through our requirements and look for matches
for p in $(get_pips); do
[[ "$p" = "-e" ]] && continue
if [[ "$p" =~ \+?([^#]*)#? ]]; then
# Get the URL from a remote reference
p=${BASH_REMATCH[1]}
fi
line="`grep -i $p $FREEZE_FILE`"
if [[ -n "$line" ]]; then
if [[ "$line" =~ \+(.*)@(.*)#egg=(.*) ]]; then
# Handle URLs
p=${BASH_REMATCH[1]}
ver=${BASH_REMATCH[2]}
elif [[ "$line" =~ (.*)[=\<\>]=(.*) ]]; then
# Normal pip packages
p=${BASH_REMATCH[1]}
ver=${BASH_REMATCH[2]}
else
# Unhandled format in freeze file
#echo "unknown: $p"
continue
fi
echo "pip|${p}|${ver}"
else
# No match in freeze file
#echo "unknown: $p"
continue
fi
done
rm $FREEZE_FILE
# localrc
# -------
# Dump localrc with 'localrc|' prepended and comments and passwords left out
if [[ -r $TOP_DIR/localrc ]]; then
sed -e '
/PASSWORD/d;
/^#/d;
s/^/localrc\|/;
' $TOP_DIR/localrc | sort
fi