git: 681e32faea72 - main - sysutils/puppet6: Bundle core modules with Puppet

From: Romain Tartière <romain_at_FreeBSD.org>
Date: Sat, 20 Aug 2022 02:32:45 UTC
The branch main has been updated by romain:

URL: https://cgit.FreeBSD.org/ports/commit/?id=681e32faea72f0eff7fbac95e7d21ecfe576c829

commit 681e32faea72f0eff7fbac95e7d21ecfe576c829
Author:     Romain Tartière <romain@FreeBSD.org>
AuthorDate: 2022-08-20 00:36:26 +0000
Commit:     Romain Tartière <romain@FreeBSD.org>
CommitDate: 2022-08-20 02:32:34 +0000

    sysutils/puppet6: Bundle core modules with Puppet
    
    The AIO Package vendor these modules, so also vendor them on FreeBSD.
    
    PR:             264277
    Reported by:    albert.shih@obspm.fr
    With hat:       puppet
---
 sysutils/puppet6/Makefile  |  32 ++++-
 sysutils/puppet6/distinfo  |  22 +++-
 sysutils/puppet6/pkg-plist | 289 +++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 336 insertions(+), 7 deletions(-)

diff --git a/sysutils/puppet6/Makefile b/sysutils/puppet6/Makefile
index 05a0c534470d..c8afdc61ddd3 100644
--- a/sysutils/puppet6/Makefile
+++ b/sysutils/puppet6/Makefile
@@ -1,7 +1,8 @@
 PORTNAME=	puppet
 PORTVERSION=	6.28.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	sysutils
+MASTER_SITES=   https://forge.puppet.com/v3/files/:forge
 PKGNAMESUFFIX=	6
 
 MAINTAINER=	puppet@FreeBSD.org
@@ -13,9 +14,6 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 BROKEN_RUBY30=	yes
 BROKEN_RUBY31=	yes
 
-# rubygem-ruby-augeas add again see PR252339, it breaks the installation for some users
-# puppet7 does not have it anymore, so users can do a migration to next major version
-# without breaking their setup
 RUN_DEPENDS=	rubygem-concurrent-ruby>=1.0:devel/rubygem-concurrent-ruby \
 		rubygem-deep_merge>=1.0:devel/rubygem-deep_merge \
 		rubygem-fast_gettext1>=1.1:devel/rubygem-fast_gettext1 \
@@ -25,8 +23,8 @@ RUN_DEPENDS=	rubygem-concurrent-ruby>=1.0:devel/rubygem-concurrent-ruby \
 		rubygem-locale>=2.1:devel/rubygem-locale \
 		rubygem-multi_json>=1.10:devel/rubygem-multi_json \
 		rubygem-puppet-resource_api>=0:devel/rubygem-puppet-resource_api \
-		rubygem-semantic_puppet>=1:devel/rubygem-semantic_puppet \
-		rubygem-ruby-augeas>=0:textproc/rubygem-ruby-augeas
+		rubygem-ruby-augeas>=0:textproc/rubygem-ruby-augeas \
+		rubygem-semantic_puppet>=1:devel/rubygem-semantic_puppet
 
 USES=		cpe
 USE_GITHUB=	yes
@@ -59,6 +57,23 @@ RFACTER_RUN_DEPENDS=	rubygem-facter>=4.0:sysutils/rubygem-facter
 CFACTER_BUILD_DEPENDS=	facter>=3.0:sysutils/facter
 CFACTER_RUN_DEPENDS=	facter>=3.0:sysutils/facter
 
+# Get versions from
+# https://github.com/puppetlabs/puppet-agent/tree/6.x/configs/components
+FORGE_MODULES=	augeas_core=1.1.2 \
+		cron_core=1.0.5 \
+		host_core=1.0.3 \
+		mount_core=1.0.4 \
+		scheduled_task=1.0.0 \
+		selinux_core=1.1.0 \
+		sshkeys_core=1.0.3 \
+		yumrepo_core=1.0.7 \
+		zfs_core=1.2.0 \
+		zone_core=1.0.3
+
+.for module in ${FORGE_MODULES}
+DISTFILES+=	puppetlabs-${module:C/=.*//}-${module:C/.*=//}.tar.gz:forge
+.endfor
+
 post-patch:
 	@${REINPLACE_CMD} -e "s|/etc/puppetlabs/puppet|${ETCDIR}|" \
 		${WRKSRC}/install.rb \
@@ -79,6 +94,7 @@ post-patch:
 		${WRKSRC}/install.rb \
 		${WRKSRC}/lib/puppet/util/run_mode.rb
 	@${REINPLACE_CMD} -e "s|/opt/puppetlabs/puppet/modules|${ETCDIR}/modules|" \
+		-e "s|/opt/puppetlabs/puppet/vendor_modules|${ETCDIR}/vendor_modules|" \
 		${WRKSRC}/lib/puppet/defaults.rb
 	@${REINPLACE_CMD} -e "s|/opt/puppetlabs/puppet/bin/gem|${LOCALBASE}/bin/gem|" \
 		${WRKSRC}/lib/puppet/provider/package/puppet_gem.rb
@@ -94,6 +110,10 @@ do-install:
 post-install:
 	${MKDIR} ${STAGEDIR}${ETCDIR}/manifests
 	${MKDIR} ${STAGEDIR}${ETCDIR}/modules
+	${MKDIR} ${STAGEDIR}${ETCDIR}/vendor_modules
+.for module in ${FORGE_MODULES}
+	(cd ${WRKDIR}/puppetlabs-${module:C/=.*//}-${module:C/.*=//} && ${COPYTREE_SHARE} . ${STAGEDIR}${ETCDIR}/vendor_modules/${module:C/=.*//})
+.endfor
 	${MKDIR} ${STAGEDIR}/var/puppet
 	${INSTALL_DATA} ${WRKSRC}/conf/auth.conf ${STAGEDIR}${ETCDIR}/auth.conf-dist
 	${SETENV} LC_ALL=C.UTF-8 ${RUBY} -I ${STAGEDIR}/${RUBY_SITELIBDIR} ${STAGEDIR}${PREFIX}/bin/puppet agent --genconfig \
diff --git a/sysutils/puppet6/distinfo b/sysutils/puppet6/distinfo
index 7998d9856cdb..9323296a43ad 100644
--- a/sysutils/puppet6/distinfo
+++ b/sysutils/puppet6/distinfo
@@ -1,3 +1,23 @@
-TIMESTAMP = 1659751599
+TIMESTAMP = 1659762237
+SHA256 (puppetlabs-augeas_core-1.1.2.tar.gz) = f57405c4d42162f0b77c211d3092b678f90da54c270f2fb4bf3648562a70cf11
+SIZE (puppetlabs-augeas_core-1.1.2.tar.gz) = 24037
+SHA256 (puppetlabs-cron_core-1.0.5.tar.gz) = 3b792d2c5e87115573812cac405ab6f365b90f9a0c87601a12957f604f5bbb8b
+SIZE (puppetlabs-cron_core-1.0.5.tar.gz) = 23287
+SHA256 (puppetlabs-host_core-1.0.3.tar.gz) = 25d970e1dbb0fd6da9206ac48eb8b7caf4b9c0f909b0876633d8500fbd461e07
+SIZE (puppetlabs-host_core-1.0.3.tar.gz) = 24672
+SHA256 (puppetlabs-mount_core-1.0.4.tar.gz) = 0dba04cf6aa85735d5e7ecc643000f36b987e281363ea77594cf41c904d43a05
+SIZE (puppetlabs-mount_core-1.0.4.tar.gz) = 40641
+SHA256 (puppetlabs-scheduled_task-1.0.0.tar.gz) = 4cd2a99a9aecb39a19a27bb1f18e26e587a94d93643ab1f52f652c4aa5daa6c6
+SIZE (puppetlabs-scheduled_task-1.0.0.tar.gz) = 34552
+SHA256 (puppetlabs-selinux_core-1.1.0.tar.gz) = b87410571c6b04e368c90b8d8fb42ccd3169e2d6ced53a04446e25fd0b2054d7
+SIZE (puppetlabs-selinux_core-1.1.0.tar.gz) = 14951
+SHA256 (puppetlabs-sshkeys_core-1.0.3.tar.gz) = 4a13c5ee9895c6e27a001b3050920b8e7e783b927acc357111206d31fb0eb830
+SIZE (puppetlabs-sshkeys_core-1.0.3.tar.gz) = 40342
+SHA256 (puppetlabs-yumrepo_core-1.0.7.tar.gz) = 551fbc913c9b85293e0e0215b537af188b527beb04b3a824775529fd0e6c7c49
+SIZE (puppetlabs-yumrepo_core-1.0.7.tar.gz) = 29409
+SHA256 (puppetlabs-zfs_core-1.2.0.tar.gz) = b587e183c086bba1e9e48045a07a185880e272c16fec1455c8b485579956e273
+SIZE (puppetlabs-zfs_core-1.2.0.tar.gz) = 17676
+SHA256 (puppetlabs-zone_core-1.0.3.tar.gz) = 02a0dad968b5cc410487a8e648806bac17ff05984c96361b1ed5dfed5acbcd94
+SIZE (puppetlabs-zone_core-1.0.3.tar.gz) = 29746
 SHA256 (puppetlabs-puppet-6.28.0_GH0.tar.gz) = 00b1ce045f24c931f9988f378d662b35aa8586065174c0de7eed3c221ac7b05c
 SIZE (puppetlabs-puppet-6.28.0_GH0.tar.gz) = 3352341
diff --git a/sysutils/puppet6/pkg-plist b/sysutils/puppet6/pkg-plist
index 87d6c263e1e3..a06edacbe0d4 100644
--- a/sysutils/puppet6/pkg-plist
+++ b/sysutils/puppet6/pkg-plist
@@ -1,6 +1,295 @@
 bin/puppet
 %%ETCDIR%%/auth.conf-dist
 %%ETCDIR%%/puppet.conf-dist
+%%ETCDIR%%/vendor_modules/augeas_core/.github/workflows/daily_unit_tests_with_nightly_puppet_gem.yaml
+%%ETCDIR%%/vendor_modules/augeas_core/.github/workflows/static_code_analysis.yaml
+%%ETCDIR%%/vendor_modules/augeas_core/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml
+%%ETCDIR%%/vendor_modules/augeas_core/.github/workflows/unit_tests_with_released_puppet_gem.yaml
+%%ETCDIR%%/vendor_modules/augeas_core/.puppet-lint.rc
+%%ETCDIR%%/vendor_modules/augeas_core/.sync.yml
+%%ETCDIR%%/vendor_modules/augeas_core/CHANGELOG.md
+%%ETCDIR%%/vendor_modules/augeas_core/CODEOWNERS
+%%ETCDIR%%/vendor_modules/augeas_core/LICENSE
+%%ETCDIR%%/vendor_modules/augeas_core/README.md
+%%ETCDIR%%/vendor_modules/augeas_core/REFERENCE.md
+%%ETCDIR%%/vendor_modules/augeas_core/lib/puppet/feature/augeas.rb
+%%ETCDIR%%/vendor_modules/augeas_core/lib/puppet/provider/augeas/augeas.rb
+%%ETCDIR%%/vendor_modules/augeas_core/lib/puppet/type/augeas.rb
+%%ETCDIR%%/vendor_modules/augeas_core/lib/puppet_x/augeas/util/parser.rb
+%%ETCDIR%%/vendor_modules/augeas_core/locales/config.yaml
+%%ETCDIR%%/vendor_modules/augeas_core/locales/ja/puppetlabs-augeas_core.po
+%%ETCDIR%%/vendor_modules/augeas_core/locales/puppetlabs-augeas_core.pot
+%%ETCDIR%%/vendor_modules/augeas_core/metadata.json
+%%ETCDIR%%/vendor_modules/augeas_core/readmes/README_ja_JP.md
+%%ETCDIR%%/vendor_modules/cron_core/.github/workflows/daily_unit_tests_with_nightly_puppet_gem.yaml
+%%ETCDIR%%/vendor_modules/cron_core/.github/workflows/static_code_analysis.yaml
+%%ETCDIR%%/vendor_modules/cron_core/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml
+%%ETCDIR%%/vendor_modules/cron_core/.github/workflows/unit_tests_with_released_puppet_gem.yaml
+%%ETCDIR%%/vendor_modules/cron_core/.puppet-lint.rc
+%%ETCDIR%%/vendor_modules/cron_core/.sync.yml
+%%ETCDIR%%/vendor_modules/cron_core/CHANGELOG.md
+%%ETCDIR%%/vendor_modules/cron_core/CODEOWNERS
+%%ETCDIR%%/vendor_modules/cron_core/LICENSE
+%%ETCDIR%%/vendor_modules/cron_core/README.md
+%%ETCDIR%%/vendor_modules/cron_core/REFERENCE.md
+%%ETCDIR%%/vendor_modules/cron_core/data/common.yaml
+%%ETCDIR%%/vendor_modules/cron_core/hiera.yaml
+%%ETCDIR%%/vendor_modules/cron_core/lib/puppet/provider/cron/crontab.rb
+%%ETCDIR%%/vendor_modules/cron_core/lib/puppet/provider/cron/filetype.rb
+%%ETCDIR%%/vendor_modules/cron_core/lib/puppet/type/cron.rb
+%%ETCDIR%%/vendor_modules/cron_core/locales/config.yaml
+%%ETCDIR%%/vendor_modules/cron_core/locales/ja/puppetlabs-cron_core.po
+%%ETCDIR%%/vendor_modules/cron_core/locales/puppetlabs-cron_core.pot
+%%ETCDIR%%/vendor_modules/cron_core/metadata.json
+%%ETCDIR%%/vendor_modules/cron_core/readmes/README_ja_JP.md
+%%ETCDIR%%/vendor_modules/host_core/CHANGELOG.md
+%%ETCDIR%%/vendor_modules/host_core/CODEOWNERS
+%%ETCDIR%%/vendor_modules/host_core/Gemfile
+%%ETCDIR%%/vendor_modules/host_core/LICENSE
+%%ETCDIR%%/vendor_modules/host_core/README.md
+%%ETCDIR%%/vendor_modules/host_core/REFERENCE.md
+%%ETCDIR%%/vendor_modules/host_core/Rakefile
+%%ETCDIR%%/vendor_modules/host_core/appveyor.yml
+%%ETCDIR%%/vendor_modules/host_core/checksums.json
+%%ETCDIR%%/vendor_modules/host_core/data/common.yaml
+%%ETCDIR%%/vendor_modules/host_core/hiera.yaml
+%%ETCDIR%%/vendor_modules/host_core/lib/puppet/provider/host/parsed.rb
+%%ETCDIR%%/vendor_modules/host_core/lib/puppet/type/host.rb
+%%ETCDIR%%/vendor_modules/host_core/locales/config.yaml
+%%ETCDIR%%/vendor_modules/host_core/locales/ja/puppetlabs-host_core.po
+%%ETCDIR%%/vendor_modules/host_core/locales/puppetlabs-host_core.pot
+%%ETCDIR%%/vendor_modules/host_core/metadata.json
+%%ETCDIR%%/vendor_modules/host_core/readmes/README_ja_JP.md
+%%ETCDIR%%/vendor_modules/host_core/spec/acceptance/nodesets/default.yml
+%%ETCDIR%%/vendor_modules/host_core/spec/acceptance/tests/create_spec.rb
+%%ETCDIR%%/vendor_modules/host_core/spec/acceptance/tests/destroy_spec.rb
+%%ETCDIR%%/vendor_modules/host_core/spec/acceptance/tests/modify_spec.rb
+%%ETCDIR%%/vendor_modules/host_core/spec/acceptance/tests/query_all_spec.rb
+%%ETCDIR%%/vendor_modules/host_core/spec/default_facts.yml
+%%ETCDIR%%/vendor_modules/host_core/spec/fixtures/unit/provider/host/parsed/valid_hosts
+%%ETCDIR%%/vendor_modules/host_core/spec/lib/puppet_spec/files.rb
+%%ETCDIR%%/vendor_modules/host_core/spec/shared_behaviours/all_parsedfile_providers.rb
+%%ETCDIR%%/vendor_modules/host_core/spec/spec_helper.rb
+%%ETCDIR%%/vendor_modules/host_core/spec/spec_helper_acceptance.rb
+%%ETCDIR%%/vendor_modules/host_core/spec/spec_helper_local.rb
+%%ETCDIR%%/vendor_modules/host_core/spec/unit/provider/host/parsed_spec.rb
+%%ETCDIR%%/vendor_modules/host_core/spec/unit/type/host_spec.rb
+%%ETCDIR%%/vendor_modules/mount_core/CHANGELOG.md
+%%ETCDIR%%/vendor_modules/mount_core/CODEOWNERS
+%%ETCDIR%%/vendor_modules/mount_core/Gemfile
+%%ETCDIR%%/vendor_modules/mount_core/LICENSE
+%%ETCDIR%%/vendor_modules/mount_core/README.md
+%%ETCDIR%%/vendor_modules/mount_core/REFERENCE.md
+%%ETCDIR%%/vendor_modules/mount_core/Rakefile
+%%ETCDIR%%/vendor_modules/mount_core/checksums.json
+%%ETCDIR%%/vendor_modules/mount_core/data/common.yaml
+%%ETCDIR%%/vendor_modules/mount_core/hiera.yaml
+%%ETCDIR%%/vendor_modules/mount_core/lib/puppet/provider/mount.rb
+%%ETCDIR%%/vendor_modules/mount_core/lib/puppet/provider/mount/parsed.rb
+%%ETCDIR%%/vendor_modules/mount_core/lib/puppet/type/mount.rb
+%%ETCDIR%%/vendor_modules/mount_core/locales/config.yaml
+%%ETCDIR%%/vendor_modules/mount_core/locales/ja/puppetlabs-mount_core.po
+%%ETCDIR%%/vendor_modules/mount_core/locales/puppetlabs-mount_core.pot
+%%ETCDIR%%/vendor_modules/mount_core/metadata.json
+%%ETCDIR%%/vendor_modules/mount_core/readmes/README_ja_JP.md
+%%ETCDIR%%/vendor_modules/mount_core/spec/acceptance/lib/mount_utils.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/acceptance/nodesets/default.yml
+%%ETCDIR%%/vendor_modules/mount_core/spec/acceptance/tests/defined_spec.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/acceptance/tests/destroy_spec.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/acceptance/tests/modify_spec.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/acceptance/tests/mounted_spec.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/acceptance/tests/query_spec.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/default_facts.yml
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/mount-output.aix.txt
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/aix.filesystems
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/aix.mount
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/darwin.mount
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/freebsd.fstab
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/freebsd.mount
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/hpux.mount
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/linux.fstab
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/linux.mount
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/netbsd.fstab
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/netbsd.mount
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/openbsd.fstab
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/openbsd.mount
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/solaris.fstab
+%%ETCDIR%%/vendor_modules/mount_core/spec/fixtures/unit/provider/mount/parsed/solaris.mount
+%%ETCDIR%%/vendor_modules/mount_core/spec/integration/provider/mount_spec.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/lib/puppet_spec/files.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/shared_behaviours/all_parsedfile_providers.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/spec_helper.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/spec_helper_acceptance.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/spec_helper_local.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/unit/provider/mount/parsed_spec.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/unit/provider/mount_spec.rb
+%%ETCDIR%%/vendor_modules/mount_core/spec/unit/type/mount_spec.rb
+%%ETCDIR%%/vendor_modules/scheduled_task/CHANGELOG.md
+%%ETCDIR%%/vendor_modules/scheduled_task/CONTRIBUTING.md
+%%ETCDIR%%/vendor_modules/scheduled_task/Gemfile
+%%ETCDIR%%/vendor_modules/scheduled_task/LICENSE
+%%ETCDIR%%/vendor_modules/scheduled_task/MAINTAINERS.md
+%%ETCDIR%%/vendor_modules/scheduled_task/NOTICE
+%%ETCDIR%%/vendor_modules/scheduled_task/README.md
+%%ETCDIR%%/vendor_modules/scheduled_task/Rakefile
+%%ETCDIR%%/vendor_modules/scheduled_task/appveyor.yml
+%%ETCDIR%%/vendor_modules/scheduled_task/checksums.json
+%%ETCDIR%%/vendor_modules/scheduled_task/examples/create_task_v1.pp
+%%ETCDIR%%/vendor_modules/scheduled_task/examples/delete_task_v1.pp
+%%ETCDIR%%/vendor_modules/scheduled_task/lib/puppet/provider/scheduled_task/taskscheduler_api2.rb
+%%ETCDIR%%/vendor_modules/scheduled_task/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb
+%%ETCDIR%%/vendor_modules/scheduled_task/lib/puppet/type/scheduled_task.rb
+%%ETCDIR%%/vendor_modules/scheduled_task/lib/puppet_x/puppetlabs/scheduled_task/error.rb
+%%ETCDIR%%/vendor_modules/scheduled_task/lib/puppet_x/puppetlabs/scheduled_task/task.rb
+%%ETCDIR%%/vendor_modules/scheduled_task/lib/puppet_x/puppetlabs/scheduled_task/trigger.rb
+%%ETCDIR%%/vendor_modules/scheduled_task/locales/config.yaml
+%%ETCDIR%%/vendor_modules/scheduled_task/locales/puppetlabs-scheduled_task.pot
+%%ETCDIR%%/vendor_modules/scheduled_task/metadata.json
+%%ETCDIR%%/vendor_modules/selinux_core/.github/workflows/daily_unit_tests_with_nightly_puppet_gem.yaml
+%%ETCDIR%%/vendor_modules/selinux_core/.github/workflows/static_code_analysis.yaml
+%%ETCDIR%%/vendor_modules/selinux_core/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml
+%%ETCDIR%%/vendor_modules/selinux_core/.github/workflows/unit_tests_with_released_puppet_gem.yaml
+%%ETCDIR%%/vendor_modules/selinux_core/.puppet-lint.rc
+%%ETCDIR%%/vendor_modules/selinux_core/.sync.yml
+%%ETCDIR%%/vendor_modules/selinux_core/CHANGELOG.md
+%%ETCDIR%%/vendor_modules/selinux_core/CODEOWNERS
+%%ETCDIR%%/vendor_modules/selinux_core/LICENSE
+%%ETCDIR%%/vendor_modules/selinux_core/README.md
+%%ETCDIR%%/vendor_modules/selinux_core/REFERENCE.md
+%%ETCDIR%%/vendor_modules/selinux_core/data/common.yaml
+%%ETCDIR%%/vendor_modules/selinux_core/hiera.yaml
+%%ETCDIR%%/vendor_modules/selinux_core/lib/puppet/provider/selboolean/getsetsebool.rb
+%%ETCDIR%%/vendor_modules/selinux_core/lib/puppet/provider/selmodule/semodule.rb
+%%ETCDIR%%/vendor_modules/selinux_core/lib/puppet/type/selboolean.rb
+%%ETCDIR%%/vendor_modules/selinux_core/lib/puppet/type/selmodule.rb
+%%ETCDIR%%/vendor_modules/selinux_core/locales/config.yaml
+%%ETCDIR%%/vendor_modules/selinux_core/locales/ja/puppetlabs-selinux_core.po
+%%ETCDIR%%/vendor_modules/selinux_core/locales/puppetlabs-selinux_core.pot
+%%ETCDIR%%/vendor_modules/selinux_core/metadata.json
+%%ETCDIR%%/vendor_modules/selinux_core/readmes/README_ja_JP.md
+%%ETCDIR%%/vendor_modules/sshkeys_core/CHANGELOG.md
+%%ETCDIR%%/vendor_modules/sshkeys_core/CODEOWNERS
+%%ETCDIR%%/vendor_modules/sshkeys_core/Gemfile
+%%ETCDIR%%/vendor_modules/sshkeys_core/LICENSE
+%%ETCDIR%%/vendor_modules/sshkeys_core/README.md
+%%ETCDIR%%/vendor_modules/sshkeys_core/REFERENCE.md
+%%ETCDIR%%/vendor_modules/sshkeys_core/Rakefile
+%%ETCDIR%%/vendor_modules/sshkeys_core/appveyor.yml
+%%ETCDIR%%/vendor_modules/sshkeys_core/checksums.json
+%%ETCDIR%%/vendor_modules/sshkeys_core/data/common.yaml
+%%ETCDIR%%/vendor_modules/sshkeys_core/hiera.yaml
+%%ETCDIR%%/vendor_modules/sshkeys_core/lib/puppet/provider/ssh_authorized_key/parsed.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/lib/puppet/provider/sshkey/parsed.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/lib/puppet/type/ssh_authorized_key.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/lib/puppet/type/sshkey.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/locales/config.yaml
+%%ETCDIR%%/vendor_modules/sshkeys_core/locales/ja/puppetlabs-sshkeys_core.po
+%%ETCDIR%%/vendor_modules/sshkeys_core/locales/puppetlabs-sshkeys_core.pot
+%%ETCDIR%%/vendor_modules/sshkeys_core/metadata.json
+%%ETCDIR%%/vendor_modules/sshkeys_core/readmes/README_ja_JP.md
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/acceptance/nodesets/default.yml
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/acceptance/tests/resource/ssh_authorized_key/create_spec.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/acceptance/tests/resource/ssh_authorized_key/destroy_spec.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/acceptance/tests/resource/ssh_authorized_key/modify_spec.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/acceptance/tests/resource/sshkey/create_spec.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/default_facts.yml
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/fixtures/integration/provider/sshkey/sample
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/fixtures/unit/provider/sshkey/parsed/sample
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/fixtures/unit/provider/sshkey/parsed/sample_with_blank_lines
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/fixtures/unit/type/user/authorized_keys
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/integration/provider/ssh_authorized_key_spec.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/integration/provider/sshkey_spec.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/integration/type/user_spec.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/lib/puppet_spec/compiler.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/lib/puppet_spec/files.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/spec_helper.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/spec_helper_acceptance.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/spec_helper_local.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/unit/provider/sshkey/parsed_spec.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/unit/type/ssh_authorized_key_spec.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/unit/type/sshkey_spec.rb
+%%ETCDIR%%/vendor_modules/sshkeys_core/spec/unit/type/user_spec.rb
+%%ETCDIR%%/vendor_modules/yumrepo_core/CHANGELOG.md
+%%ETCDIR%%/vendor_modules/yumrepo_core/CODEOWNERS
+%%ETCDIR%%/vendor_modules/yumrepo_core/Gemfile
+%%ETCDIR%%/vendor_modules/yumrepo_core/LICENSE
+%%ETCDIR%%/vendor_modules/yumrepo_core/README.md
+%%ETCDIR%%/vendor_modules/yumrepo_core/REFERENCE.md
+%%ETCDIR%%/vendor_modules/yumrepo_core/Rakefile
+%%ETCDIR%%/vendor_modules/yumrepo_core/checksums.json
+%%ETCDIR%%/vendor_modules/yumrepo_core/data/common.yaml
+%%ETCDIR%%/vendor_modules/yumrepo_core/hiera.yaml
+%%ETCDIR%%/vendor_modules/yumrepo_core/lib/puppet/provider/yumrepo/inifile.rb
+%%ETCDIR%%/vendor_modules/yumrepo_core/lib/puppet/type/yumrepo.rb
+%%ETCDIR%%/vendor_modules/yumrepo_core/locales/config.yaml
+%%ETCDIR%%/vendor_modules/yumrepo_core/locales/ja/puppetlabs-yumrepo_core.po
+%%ETCDIR%%/vendor_modules/yumrepo_core/locales/puppetlabs-yumrepo_core.pot
+%%ETCDIR%%/vendor_modules/yumrepo_core/metadata.json
+%%ETCDIR%%/vendor_modules/yumrepo_core/readmes/README_ja_JP.md
+%%ETCDIR%%/vendor_modules/yumrepo_core/spec/acceptance/nodesets/default.yml
+%%ETCDIR%%/vendor_modules/yumrepo_core/spec/acceptance/tests/yumrepo_spec.rb
+%%ETCDIR%%/vendor_modules/yumrepo_core/spec/default_facts.yml
+%%ETCDIR%%/vendor_modules/yumrepo_core/spec/lib/puppet_spec/compiler.rb
+%%ETCDIR%%/vendor_modules/yumrepo_core/spec/lib/puppet_spec/files.rb
+%%ETCDIR%%/vendor_modules/yumrepo_core/spec/spec_helper.rb
+%%ETCDIR%%/vendor_modules/yumrepo_core/spec/spec_helper_acceptance.rb
+%%ETCDIR%%/vendor_modules/yumrepo_core/spec/spec_helper_local.rb
+%%ETCDIR%%/vendor_modules/yumrepo_core/spec/unit/provider/yumrepo/inifile_spec.rb
+%%ETCDIR%%/vendor_modules/yumrepo_core/spec/unit/type/yumrepo_spec.rb
+%%ETCDIR%%/vendor_modules/zfs_core/.github/workflows/daily_unit_tests_with_nightly_puppet_gem.yaml
+%%ETCDIR%%/vendor_modules/zfs_core/.github/workflows/static_code_analysis.yaml
+%%ETCDIR%%/vendor_modules/zfs_core/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml
+%%ETCDIR%%/vendor_modules/zfs_core/.github/workflows/unit_tests_with_released_puppet_gem.yaml
+%%ETCDIR%%/vendor_modules/zfs_core/.puppet-lint.rc
+%%ETCDIR%%/vendor_modules/zfs_core/.sync.yml
+%%ETCDIR%%/vendor_modules/zfs_core/CHANGELOG.md
+%%ETCDIR%%/vendor_modules/zfs_core/CODEOWNERS
+%%ETCDIR%%/vendor_modules/zfs_core/LICENSE
+%%ETCDIR%%/vendor_modules/zfs_core/README.md
+%%ETCDIR%%/vendor_modules/zfs_core/REFERENCE.md
+%%ETCDIR%%/vendor_modules/zfs_core/data/common.yaml
+%%ETCDIR%%/vendor_modules/zfs_core/hiera.yaml
+%%ETCDIR%%/vendor_modules/zfs_core/lib/puppet/provider/zfs/zfs.rb
+%%ETCDIR%%/vendor_modules/zfs_core/lib/puppet/provider/zpool/zpool.rb
+%%ETCDIR%%/vendor_modules/zfs_core/lib/puppet/type/zfs.rb
+%%ETCDIR%%/vendor_modules/zfs_core/lib/puppet/type/zpool.rb
+%%ETCDIR%%/vendor_modules/zfs_core/locales/config.yaml
+%%ETCDIR%%/vendor_modules/zfs_core/locales/ja/puppetlabs-zfs_core.po
+%%ETCDIR%%/vendor_modules/zfs_core/locales/puppetlabs-zfs_core.pot
+%%ETCDIR%%/vendor_modules/zfs_core/metadata.json
+%%ETCDIR%%/vendor_modules/zfs_core/readmes/README_ja_JP.md
+%%ETCDIR%%/vendor_modules/zone_core/CHANGELOG.md
+%%ETCDIR%%/vendor_modules/zone_core/CODEOWNERS
+%%ETCDIR%%/vendor_modules/zone_core/Gemfile
+%%ETCDIR%%/vendor_modules/zone_core/LICENSE
+%%ETCDIR%%/vendor_modules/zone_core/README.md
+%%ETCDIR%%/vendor_modules/zone_core/REFERENCE.md
+%%ETCDIR%%/vendor_modules/zone_core/Rakefile
+%%ETCDIR%%/vendor_modules/zone_core/appveyor.yml
+%%ETCDIR%%/vendor_modules/zone_core/checksums.json
+%%ETCDIR%%/vendor_modules/zone_core/data/common.yaml
+%%ETCDIR%%/vendor_modules/zone_core/hiera.yaml
+%%ETCDIR%%/vendor_modules/zone_core/lib/puppet/provider/zone/solaris.rb
+%%ETCDIR%%/vendor_modules/zone_core/lib/puppet/type/zone.rb
+%%ETCDIR%%/vendor_modules/zone_core/locales/config.yaml
+%%ETCDIR%%/vendor_modules/zone_core/locales/ja/puppetlabs-zone_core.po
+%%ETCDIR%%/vendor_modules/zone_core/locales/puppetlabs-zone_core.pot
+%%ETCDIR%%/vendor_modules/zone_core/metadata.json
+%%ETCDIR%%/vendor_modules/zone_core/readmes/README_ja_JP.md
+%%ETCDIR%%/vendor_modules/zone_core/spec/acceptance/lib/zone_util.rb
+%%ETCDIR%%/vendor_modules/zone_core/spec/acceptance/nodesets/default.yml
+%%ETCDIR%%/vendor_modules/zone_core/spec/acceptance/pending/dataset.rb
+%%ETCDIR%%/vendor_modules/zone_core/spec/acceptance/pending/ticket_4840_should_create_zone_with_zpool.rb
+%%ETCDIR%%/vendor_modules/zone_core/spec/acceptance/tests/zone_configured_spec.rb
+%%ETCDIR%%/vendor_modules/zone_core/spec/acceptance/tests/zone_ensure_spec.rb
+%%ETCDIR%%/vendor_modules/zone_core/spec/acceptance/tests/zone_ip_spec.rb
+%%ETCDIR%%/vendor_modules/zone_core/spec/acceptance/tests/zone_path_spec.rb
+%%ETCDIR%%/vendor_modules/zone_core/spec/acceptance/tests/zone_running_spec.rb
+%%ETCDIR%%/vendor_modules/zone_core/spec/default_facts.yml
+%%ETCDIR%%/vendor_modules/zone_core/spec/spec_helper.rb
+%%ETCDIR%%/vendor_modules/zone_core/spec/spec_helper_acceptance.rb
+%%ETCDIR%%/vendor_modules/zone_core/spec/unit/provider/zone/solaris_spec.rb
+%%ETCDIR%%/vendor_modules/zone_core/spec/unit/type/zone_spec.rb
 lib/ruby/gems/%%RUBY_VER%%/specifications/puppet-%%PORTVERSION%%.gemspec
 %%RUBY_SITELIBDIR%%/hiera/puppet_function.rb
 %%RUBY_SITELIBDIR%%/hiera/scope.rb