Unverified Commit 1065ce87 authored by Kenyon Ralph's avatar Kenyon Ralph Committed by GitHub
Browse files

Merge pull request #441 from voxpupuli/modulesync

modulesync 10.3.0
parents c89e04aa b4537dcb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

modulesync_config_version: '10.2.0'
modulesync_config_version: '10.3.0'
+2 −2
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
source ENV['GEM_SOURCE'] || 'https://rubygems.org'

group :test do
  gem 'voxpupuli-test', '~> 12.0',  :require => false
  gem 'voxpupuli-test', '~> 13.0',  :require => false
  gem 'puppet_metadata', '~> 5.0',  :require => false
end

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

group :release do
  gem 'voxpupuli-release', '~> 4.0',  :require => false
  gem 'voxpupuli-release', '~> 5.0',  :require => false
end

gem 'rake', :require => false
+2 −2
Original line number Diff line number Diff line
@@ -792,7 +792,7 @@ Default value: `'present'`

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

Data type: `Variant[Array[String], String, Undef]`
Data type: `Optional[Variant[Array[String], String, Undef]]`

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

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

Data type: `Variant[Array[String], String, Undef]`
Data type: `Optional[Variant[Array[String], String, Undef]]`

A string whose value is a location for the source file to be used. This parameter is mutually
exclusive with the content parameter, one or the other must be present, but both cannot be present.
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@
#
define postfix::conffile (
  Enum['present', 'absent', 'directory'] $ensure = 'present',
  Variant[Array[String], String, Undef]  $source = undef,
  Optional[Variant[Array[String], String, Undef]] $source = undef,
  Optional[String] $content = undef,
  Optional[Stdlib::Absolutepath] $path = undef,
  Stdlib::Filemode $mode = '0640',
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@
#
define postfix::hash (
  Enum['present', 'absent'] $ensure = 'present',
  Variant[Array[String], String, Undef] $source  = undef,
  Optional[Variant[Array[String], String, Undef]] $source  = undef,
  Optional[Variant[Sensitive[String],String]] $content = undef,
  Stdlib::Filemode $mode = '0640',
) {