summaryrefslogtreecommitdiff
path: root/puppet/modules/site_couchdb/manifests/bigcouch/settle_cluster.pp
blob: 820b5be25e467f579b63ddda58482a0aacb4583e (plain)
1
2
3
4
5
6
7
8
9
10
11
class site_couchdb::bigcouch::settle_cluster {

  exec { 'wait_for_couch_nodes':
    command => '/srv/leap/bin/run_tests --test CouchDB/Are_configured_nodes_online? --retry 12 --wait 10'
  }

  exec { 'settle_cluster_membership':
    command => '/srv/leap/bin/run_tests --test CouchDB/Is_cluster_membership_ok? --retry 12 --wait 10',
    require => Exec['wait_for_couch_nodes']
  }
}