Add client configuration

This commit is contained in:
Florian Haas 2013-07-08 09:04:43 +00:00
parent 944e1d59fa
commit b95a9b49dc
2 changed files with 12 additions and 0 deletions

9
manifests/client.pp Normal file
View File

@ -0,0 +1,9 @@
define kickstack::client {
$servicename = $name
$classname = "::${servicename}::client"
class { "${classname}":
}
}

3
manifests/node/client.pp Normal file
View File

@ -0,0 +1,3 @@
class kickstack::node::client inherits kickstack {
include kickstack::cinder::client
}