puppet-nova/manifests/cell_v2/map_cell_and_hosts.pp
Takashi Kajinami 39b2d75f69 Avoid hard-coding OS user/group in each manifest
and replace hard-codes by definition in params.pp . This change
renames nova_user and nova_group to user and group, so that
the consistent variable names are used to define os user and group.

Change-Id: I5dfdc8588df3091412298507d93097388444e10b
2022-02-21 09:30:59 +00:00

25 lines
582 B
Puppet

# == Class: nova::cell_v2::map_cell_and_hosts
#
# Class to run the map_cell_and_hosts action for cell v2
#
# === Parameters
#
# [*extra_params*]
# (String) Extra parameters to pass to the nova-manage commands.
# Defaults to ''.
#
class nova::cell_v2::map_cell_and_hosts (
$extra_params = '',
) {
include nova::deps
include nova::params
exec { 'nova-cell_v2-map_cell_and_hosts':
path => ['/bin', '/usr/bin'],
command => "nova-manage ${extra_params} cell_v2 map_cell_and_hosts",
user => $::nova::params::user,
refreshonly => true,
}
}