File: client.pp

package info (click to toggle)
puppet-module-vmms 1.0.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 172 kB
  • sloc: ruby: 89; makefile: 11; sh: 10; python: 5
file content (24 lines) | stat: -rw-r--r-- 461 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# == Class: vmms::client
#
# Installs vmms python client.
#
# === Parameters
#
# [*package_ensure*]
#   Ensure state for package. Defaults to 'present'.
#
class vmms::client(
  $package_ensure = 'present'
) {

  include vmms::deps
  include vmms::params

  package { 'python-vmmsclient':
    ensure => $package_ensure,
    name   => $::vmms::params::client_package,
    tag    => ['openstack', 'openstackclient'],
  }

  include openstacklib::openstackclient
}