client.pp 351 B

12345678910111213141516171819202122
  1. # == Class nova::client
  2. #
  3. # installs nova client
  4. #
  5. # === Parameters:
  6. #
  7. # [*ensure*]
  8. # (optional) The state for the nova client package
  9. # Defaults to 'present'
  10. #
  11. class nova::client(
  12. $ensure = 'present'
  13. ) {
  14. include ::nova::deps
  15. package { 'python-novaclient':
  16. ensure => $ensure,
  17. tag => ['openstack', 'nova-support-package'],
  18. }
  19. }