Change the recipe order in os-image role

set openstack-image::identity_registration recipe after
openstack-image::api and openstack-image::registry,
so that identity endpoint can be registered.

Change-Id: I524434a23328046c2b0e28d6b62a45ef31b11ef1
This commit is contained in:
Chen Zhiwei 2014-01-17 01:08:02 -05:00
parent 233b103c53
commit 848964ae12
2 changed files with 3 additions and 1 deletions

View File

@ -82,8 +82,10 @@ Please refer to the [TESTING.md](TESTING.md) for instructions for testing the re
|:---------------------|:-----------------------------------------|
| **Author** | Matt Ray (<matt@opscode.com>) |
| **Author** | Jay Pipes (<jaypipes@gmail.com>) |
| **Author** | Chen Zhiwei (<zhiwchen@cn.ibm.com>) |
| | |
| **Copyright** | Copyright (c) 2011-2013 Opscode, Inc. |
| **Copyright** | Copyright (c) 2014 IBM, Corp. |
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

View File

@ -1,8 +1,8 @@
name 'os-image'
description 'Roll-up role for Glance.'
run_list(
'recipe[openstack-image::identity_registration]',
'role[os-image-api]',
'role[os-image-registry]',
'recipe[openstack-image::identity_registration]',
'role[os-image-upload]'
)