forked from ceph/ceph-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap
executable file
·57 lines (53 loc) · 1.51 KB
/
bootstrap
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
#!/bin/sh
set -e
if command -v lsb_release >/dev/null 2>&1; then
case "$(lsb_release --id --short)" in
Ubuntu|Debian)
for package in python-virtualenv; do
if [ "$(dpkg --status -- $package 2>/dev/null|sed -n 's/^Status: //p')" != "install ok installed" ]; then
# add a space after old values
missing="${missing:+$missing }$package"
fi
done
if [ -n "$missing" ]; then
echo "$0: missing required packages, please install them:" 1>&2
echo " sudo apt-get install $missing"
exit 1
fi
;;
esac
case "$(lsb_release --id --short | awk '{print $1}')" in
openSUSE|SUSE)
for package in python-virtualenv; do
if [ "$(rpm -qa $package 2>/dev/null)" == "" ]; then
missing="${missing:+$missing }$package"
fi
done
if [ -n "$missing" ]; then
echo "$0: missing required packages, please install them:" 1>&2
echo " sudo zypper install $missing"
exit 1
fi
;;
esac
else
if [ -f /etc/redhat-release ]; then
case "$(cat /etc/redhat-release | awk '{print $1}')" in
CentOS)
for package in python-virtualenv; do
if [ "$(rpm -qa $package 2>/dev/null)" == "" ]; then
missing="${missing:+$missing }$package"
fi
done
if [ -n "$missing" ]; then
echo "$0: missing required packages, please install them:" 1>&2
echo " sudo yum install $missing"
exit 1
fi
;;
esac
fi
fi
test -d virtualenv || virtualenv virtualenv
./virtualenv/bin/python setup.py develop
test -e ceph-deploy || ln -s virtualenv/bin/ceph-deploy .