From fbc55f821dd668da6d4ea91c0b796cb913846ddd Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Mon, 15 Aug 2022 02:25:20 +0900 Subject: [PATCH] Fix type validation error with puppetlabs-apache 8.0.0 This is follow-up of 11c3e1acad2db20ce9e2a959eba6211bef1e17b3 and fixes type validation error of apache::vhost::port, which now accepts only an integer value. Related-Bug: #1983300 Change-Id: I8594d5857c54a860cdbb740acb63b5104a29c655 --- manifests/pxe.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/pxe.pp b/manifests/pxe.pp index 8116face..018e62ea 100644 --- a/manifests/pxe.pp +++ b/manifests/pxe.pp @@ -32,7 +32,7 @@ # [*http_port*] # (optional) port used by the HTTP service serving introspection and # deployment images. -# Defaults to '8088' +# Defaults to 8088 # # [*pxelinux_path*] # (optional) Path to directory containing pxelinux.0 . @@ -83,7 +83,7 @@ class ironic::pxe ( $package_ensure = 'present', $tftp_root = '/tftpboot', $http_root = '/httpboot', - $http_port = '8088', + $http_port = 8088, $pxelinux_path = $::ironic::params::pxelinux_path, $syslinux_path = $::ironic::params::syslinux_path, $syslinux_files = $::ironic::params::syslinux_files,