forked from ansiwen/devstack-vagrant
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathupdate-repos.sh
executable file
·81 lines (78 loc) · 1.69 KB
/
update-repos.sh
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
#!/bin/sh
GIT_BASE='git://git.openstack.org'
REPOS='
openstack-dev/devstack
openstack/cinder
openstack/glance
openstack/heat
openstack/horizon
openstack/ironic
openstack/keystone
openstack/neutron
openstack/neutron-fwaas
openstack/neutron-lbaas
openstack/neutron-vpnaas
openstack/nova
openstack/swift
openstack/requirements
openstack/tempest
openstack/tempest-lib
openstack/python-cinderclient
openstack/python-glanceclient
openstack/python-heatclient
openstack/python-ironicclient
openstack/keystoneauth
openstack/python-keystoneclient
openstack/python-neutronclient
openstack/python-novaclient
openstack/python-swiftclient
openstack/python-openstackclient
openstack/cliff
openstack/futurist
openstack/debtcollector
openstack/automaton
openstack/oslo.cache
openstack/oslo.concurrency
openstack/oslo.config
openstack/oslo.context
openstack/oslo.db
openstack/oslo.i18n
openstack/oslo.log
openstack/oslo.messaging
openstack/oslo.middleware
openstack/oslo.policy
openstack/oslo.reports
openstack/oslo.rootwrap
openstack/oslo.serialization
openstack/oslo.service
openstack/oslo.utils
openstack/oslo.versionedobjects
openstack/oslo.vmware
openstack/pycadf
openstack/stevedore
openstack/taskflow
openstack/tooz
openstack/glance_store
openstack/heat-cfntools
openstack/heat-templates
openstack/django_openstack_auth
openstack/keystonemiddleware
openstack/swift3
openstack/ceilometermiddleware
openstack/os-brick
openstack/ironic-lib
openstack/dib-utils
openstack/os-apply-config
openstack/os-collect-config
openstack/os-refresh-config
openstack/ironic-python-agent
'
for r in $REPOS ; do
if [ -x repos/$r.git ] ; then
pushd repos/$r.git
git pull --rebase
popd
else
git clone $GIT_BASE/$r.git repos/$r.git
fi
done