Add .gitreview config

Change-Id: I012a0b214c5c05491d5cabf8a6725ca738f98586
This commit is contained in:
Xingchao Yu 2013-10-29 22:10:17 +08:00
parent 9c0751ec7b
commit 1f017351d9
3 changed files with 19 additions and 15 deletions

4
.gitreview Normal file
View File

@ -0,0 +1,4 @@
[gerrit]
host=review.openstack.org
port=29418
project=stackforge/puppet-designate.git

View File

@ -5,22 +5,22 @@ puppet-designate
Module Description
------------------
The designate module to aim to make Puppet capable of managing the entirely of designate.
The designate module aims to make Puppet capable of managing the entirely of designate.
WORK IN PROGRESS
----------------
✓ Basic structure
✓ DB
✓ Keystone (Users, Services, Endpoints)
✓ Client
✓ designate-api
✓ designate-central
✗ designate-agent (in progress)
✗ designate-sink (in progress)
✓ An example of site.pp
✗ Write Tests (in progress)
✓ Basic structure
✓ DB
✓ Keystone (Users, Services, Endpoints)
✓ Client
✓ designate-api
✓ designate-central
✗ designate-agent (in progress)
✗ designate-sink (in progress)
✓ An example of site.pp
✗ Write Tests (in progress)
Setup
@ -30,9 +30,9 @@ Setup
Currently there is no available RPM packages for use, you need to package it from source.
First, clone the spec file from https://github.com/NewpTone/designate-spec.git
Then, clone the source file from https://github.com/stackforge/designate.git
Last, use rpmbuild to package it.
First, clone the spec file from https://github.com/NewpTone/designate-spec.git
Then, clone the source file from https://github.com/stackforge/designate.git
Last, use rpmbuild to package it.
### Installing Designate

View File

@ -34,7 +34,7 @@ class designate::db (
command => $::designate::params::dbinit_command,
path => '/usr/bin',
user => 'root',
unless => "/usr/bin/mysql designate -e 'select * from migrate_version'",
unless => '/usr/bin/mysql designate -e "select * from migrate_version"',
refreshonly => true,
logoutput => on_failure,
subscribe => Designate_config['storage:sqlalchemy/database_connection']