puppet-nova/manifests/cell_v2/map_cell0.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

31 lines
776 B
Puppet

# == Class: nova::cell_v2::map_cell0
#
# Class to execute nova cell_v2 map_cell0
#
# === Parameters
#
# [*extra_params*]
# (optional) String of extra command line parameters to pass
# to the nova-manage command. These will be inserted in
# the command line between 'nova-manage' and 'cell_v2'.
# Defaults to ''
#
#
class nova::cell_v2::map_cell0 (
$extra_params = '',
) {
include nova::deps
include nova::params
exec { 'nova-cell_v2-map_cell0':
path => ['/bin', '/usr/bin'],
command => "nova-manage ${extra_params} cell_v2 map_cell0",
user => $::nova::params::user,
refreshonly => true,
logoutput => on_failure,
subscribe => Anchor['nova::cell_v2::begin'],
notify => Anchor['nova::cell_v2::end'],
}
}