Get rid of blank line causing lint errors

This fixes the following errors detected in lint jobs.

manifests/client.pp:29:WARNING: class not documented
manifests/drivers/ansible.pp:69:WARNING: class not documented
manifests/drivers/drac.pp:22:WARNING: class not documented
manifests/wsgi/apache.pp:132:WARNING: class not documented

Change-Id: I1a1fae2ed1b0148dc438664df6476226728bccc6
This commit is contained in:
Takashi Kajinami 2023-04-25 11:57:16 +09:00
parent 689aa44e2a
commit 2880e347dd
4 changed files with 6 additions and 6 deletions

View File

@ -14,7 +14,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# ironic::client
#
# Manages the ironic client package on systems
@ -25,7 +25,7 @@
# (optional) The state of the package
# Defaults to present
#
#
class ironic::client (
$package_ensure = present
) {

View File

@ -65,7 +65,7 @@
# [*default_python_interpreter*]
# (optional) Absolute path to the python interpreter on the managed machines.
# Defaults to $facts['os_service_default']
#
class ironic::drivers::ansible (
$package_ensure = 'present',
$ansible_extra_args = $facts['os_service_default'],

View File

@ -9,7 +9,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# Configure the DRAC driver in Ironic
#
# === Parameters
@ -18,7 +18,7 @@
# (optional) The state of the dracclient package
# Defaults to 'present'
#
#
class ironic::drivers::drac (
$package_ensure = 'present',
) {

View File

@ -128,7 +128,7 @@
#
# class { 'ironic::wsgi::apache': }
#
#
class ironic::wsgi::apache (
$servername = $facts['networking']['fqdn'],
$port = 6385,