Puppet Class: couchbase::repository
- Defined in:
- manifests/repository.pp
Overview
Class: couchbase::repository
Sets up the couchbase repo depending on OS The repo is used to install the client library.
Authors
Alex Farcas <alex.farcas@gmail.com>
10 11 12 13 14 15 16 17 18 |
# File 'manifests/repository.pp', line 10
class couchbase::repository {
include ::couchbase::params
case $::couchbase::params::repository {
'redhat': { include ::couchbase::repository::redhat }
'debian': { include ::couchbase::repository::debian }
default: { }
}
}
|