Skip to content

Commit 1065ce8

Browse files
authored
Merge pull request #441 from voxpupuli/modulesync
modulesync 10.3.0
2 parents c89e04a + b4537dc commit 1065ce8

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.msync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Managed by modulesync - DO NOT EDIT
33
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
44

5-
modulesync_config_version: '10.2.0'
5+
modulesync_config_version: '10.3.0'

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
55

66
group :test do
7-
gem 'voxpupuli-test', '~> 12.0', :require => false
7+
gem 'voxpupuli-test', '~> 13.0', :require => false
88
gem 'puppet_metadata', '~> 5.0', :require => false
99
end
1010

@@ -19,7 +19,7 @@ group :system_tests do
1919
end
2020

2121
group :release do
22-
gem 'voxpupuli-release', '~> 4.0', :require => false
22+
gem 'voxpupuli-release', '~> 5.0', :require => false
2323
end
2424

2525
gem 'rake', :require => false

REFERENCE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ Default value: `'present'`
792792

793793
##### <a name="-postfix--conffile--source"></a>`source`
794794

795-
Data type: `Variant[Array[String], String, Undef]`
795+
Data type: `Optional[Variant[Array[String], String, Undef]]`
796796

797797
A string with the source of the file. This is the `source` parameter of the underlying file resource.
798798
Example: `puppet:///modules/postfix/configfile.cf`
@@ -975,7 +975,7 @@ Default value: `'present'`
975975

976976
##### <a name="-postfix--hash--source"></a>`source`
977977

978-
Data type: `Variant[Array[String], String, Undef]`
978+
Data type: `Optional[Variant[Array[String], String, Undef]]`
979979

980980
A string whose value is a location for the source file to be used. This parameter is mutually
981981
exclusive with the content parameter, one or the other must be present, but both cannot be present.

manifests/conffile.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
#
5151
define postfix::conffile (
5252
Enum['present', 'absent', 'directory'] $ensure = 'present',
53-
Variant[Array[String], String, Undef] $source = undef,
53+
Optional[Variant[Array[String], String, Undef]] $source = undef,
5454
Optional[String] $content = undef,
5555
Optional[Stdlib::Absolutepath] $path = undef,
5656
Stdlib::Filemode $mode = '0640',

manifests/hash.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
#
4545
define postfix::hash (
4646
Enum['present', 'absent'] $ensure = 'present',
47-
Variant[Array[String], String, Undef] $source = undef,
47+
Optional[Variant[Array[String], String, Undef]] $source = undef,
4848
Optional[Variant[Sensitive[String],String]] $content = undef,
4949
Stdlib::Filemode $mode = '0640',
5050
) {

0 commit comments

Comments
 (0)