Alexandros Kosiaris has submitted this change and it was merged. Change subject: Puppet 3.x needs storeconfigs=true for thin_storeconfigs to work ......................................................................
Puppet 3.x needs storeconfigs=true for thin_storeconfigs to work As mentioned in: http://projects.puppetlabs.com/projects/1/wiki/using_stored_configuration thin_storeconfigs needs storeconfigs as well. This however seems to have changed only in puppet 3.x Change-Id: Ib3951c71eeb0aaa44036ecbb2ee7392be9b122d6 --- M manifests/role/puppetmaster.pp 1 file changed, 2 insertions(+), 0 deletions(-) Approvals: Alexandros Kosiaris: Looks good to me, approved jenkins-bot: Verified diff --git a/manifests/role/puppetmaster.pp b/manifests/role/puppetmaster.pp index 4fc3360..17ef38f 100644 --- a/manifests/role/puppetmaster.pp +++ b/manifests/role/puppetmaster.pp @@ -22,6 +22,7 @@ { 'worker' => 'strontium.eqiad.wmnet', }, ], config => { + 'storeconfigs' => true, # Required by thin_storeconfigs on puppet 3.x 'thin_storeconfigs' => true, 'dbadapter' => 'mysql', 'dbuser' => 'puppet', @@ -39,6 +40,7 @@ allow_from => $role::puppetmaster::config::allow_from, server_type => 'backend', config => { + 'storeconfigs' => true, # Required by thin_storeconfigs on puppet 3.x 'thin_storeconfigs' => true, 'ca' => 'false', 'ca_server' => 'palladium.eqiad.wmnet', -- To view, visit https://gerrit.wikimedia.org/r/142554 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ib3951c71eeb0aaa44036ecbb2ee7392be9b122d6 Gerrit-PatchSet: 1 Gerrit-Project: operations/puppet Gerrit-Branch: production Gerrit-Owner: Alexandros Kosiaris <[email protected]> Gerrit-Reviewer: Alexandros Kosiaris <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
