updated readme to add the repo_manage feature

added basic usage example for testing
This commit is contained in:
Matthias Crauwels 2017-02-10 22:33:48 +01:00
Родитель 0824addfd9
Коммит a2d2456518
2 изменённых файлов: 18 добавлений и 0 удалений

Просмотреть файл

@ -81,6 +81,8 @@ This module is to install the MySQL tool called Orchestrator via puppet. Orchest
* The orchestrator deb/rpm package is available to puppet if `orchestrator::params::package_manage` is `true`.
* Puppet will manage the [Orchestrator Packagecloud repo](https://packagecloud.io/github/orchestrator) if `orchestrator::params::repo_manage` is `true`. *Note*: this functionality will require the [computology/packagecloud]( https://forge.puppet.com/computology/packagecloud) module dependency.
## Status
Stable and in active development.

16
examples/init.pp Normal file
Просмотреть файл

@ -0,0 +1,16 @@
node default {
$user = 'root'
$password = 'root'
class { '::mysql::server':
root_password => "%${password}%",
remove_default_accounts => true,
} ->
class { '::orchestrator':
config_override => {
'MySQLOrchestratorHost' => '127.0.0.1',
},
}
}