Files
puppet-ironic/manifests/drivers/hardware_interface.pp
Takashi Kajinami 9fd0f46f34 Prepare for voxpupuli-puppet-lint-plugins
Fix new lint errors detected when full of the voxpupili lint plugins
are enabled.

Change-Id: Ia996ad7dfba8e667e1d9cdcbdcf5c74f81972c48
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2025-08-20 10:38:20 +09:00

44 lines
1.3 KiB
Puppet

#
# Copyright (C) 2016 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
# Internal define for hardware interfaces declaration
#
# === Parameters
#
# [*interface_type*]
# Interface type name (e.g. 'boot').
# Defaults to namevar.
#
# [*enabled_list*]
# List of enabled implementations.
# Defaults to $facts['os_service_default']
#
# [*default*]
# The default implementation to use when none is requested by a user.
# Defaults to $facts['os_service_default']
#
define ironic::drivers::hardware_interface (
$interface_type = $title,
$enabled_list = $facts['os_service_default'],
$default = $facts['os_service_default'],
) {
include ironic::deps
ironic_config {
"DEFAULT/enabled_${interface_type}_interfaces": value => join(any2array($enabled_list), ',');
"DEFAULT/default_${interface_type}_interface": value => $default;
}
}