mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
Update to support Facter 4.x
Now that we ship sysutils/rubygem-facter, minor adjustments are needed on the PuppetServer side. The dependency on facter is managed by sysutils/puppet5, so no need for options here. Bump PORTREVISION. With hat: puppet
This commit is contained in:
parent
e9d0d0d4be
commit
a668adadf5
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=547212
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
PORTNAME= puppetserver
|
PORTNAME= puppetserver
|
||||||
PORTVERSION= 5.3.14
|
PORTVERSION= 5.3.14
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= sysutils java
|
CATEGORIES= sysutils java
|
||||||
MASTER_SITES= https://downloads.puppetlabs.com/puppet/
|
MASTER_SITES= https://downloads.puppetlabs.com/puppet/
|
||||||
PKGNAMESUFFIX= 5
|
PKGNAMESUFFIX= 5
|
||||||
@ -36,17 +37,6 @@ GROUPS= puppet
|
|||||||
SUB_LIST= JAVA_HOME=${JAVA_HOME}
|
SUB_LIST= JAVA_HOME=${JAVA_HOME}
|
||||||
SUB_FILES= pkg-message
|
SUB_FILES= pkg-message
|
||||||
|
|
||||||
OPTIONS_DEFAULT= CFACTER
|
|
||||||
OPTIONS_RADIO= FACTER
|
|
||||||
OPTIONS_RADIO_FACTER= CFACTER RFACTER
|
|
||||||
|
|
||||||
RFACTER_DESC= Use facter 2.x (written in Ruby)
|
|
||||||
CFACTER_DESC= Use facter 3.x (experimental rewrite in C++)
|
|
||||||
|
|
||||||
RFACTER_RUN_DEPENDS= rubygem-facter>=2.0:sysutils/rubygem-facter
|
|
||||||
|
|
||||||
CFACTER_RUN_DEPENDS= facter>=3.0:sysutils/facter
|
|
||||||
|
|
||||||
post-patch:
|
post-patch:
|
||||||
.for file in ext/config/logback.xml ext/config/request-logging.xml \
|
.for file in ext/config/logback.xml ext/config/request-logging.xml \
|
||||||
ext/config/conf.d/global.conf ext/config/conf.d/puppetserver.conf \
|
ext/config/conf.d/global.conf ext/config/conf.d/puppetserver.conf \
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
TIMESTAMP = 1594846825
|
TIMESTAMP = 1598656625
|
||||||
SHA256 (puppetserver-5.3.14.tar.gz) = 23cebf6fda2233abcf059020bb73c9a9a283a89cfc211e3582cea59813da142c
|
SHA256 (puppetserver-5.3.14.tar.gz) = 23cebf6fda2233abcf059020bb73c9a9a283a89cfc211e3582cea59813da142c
|
||||||
SIZE (puppetserver-5.3.14.tar.gz) = 53787806
|
SIZE (puppetserver-5.3.14.tar.gz) = 53787806
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
--- ext/config/conf.d/puppetserver.conf.orig 2018-08-21 16:07:02 UTC
|
--- ext/config/conf.d/puppetserver.conf.orig 2020-07-02 18:59:15 UTC
|
||||||
+++ ext/config/conf.d/puppetserver.conf
|
+++ ext/config/conf.d/puppetserver.conf
|
||||||
@@ -2,16 +2,20 @@
|
@@ -2,16 +2,21 @@
|
||||||
jruby-puppet: {
|
jruby-puppet: {
|
||||||
# Where the puppet-agent dependency places puppet, facter, etc...
|
# Where the puppet-agent dependency places puppet, facter, etc...
|
||||||
# Puppet server expects to load Puppet from this location
|
# Puppet server expects to load Puppet from this location
|
||||||
@ -8,7 +8,8 @@
|
|||||||
+ ruby-load-path: [
|
+ ruby-load-path: [
|
||||||
+ %%RUBY_SITELIBDIR%%,
|
+ %%RUBY_SITELIBDIR%%,
|
||||||
+ %%PREFIX%%/lib/ruby/vendor_ruby,
|
+ %%PREFIX%%/lib/ruby/vendor_ruby,
|
||||||
+ %%PREFIX%%/lib/ruby/gems/%%RUBY_VER%%/gems/facter-2.5.0/lib,
|
+ %%PREFIX%%/lib/ruby/gems/%%RUBY_VER%%/gems/facter/lib,
|
||||||
|
+ %%PREFIX%%/lib/ruby/gems/%%RUBY_VER%%/gems/hocon-1.3.1/lib,
|
||||||
+ ]
|
+ ]
|
||||||
|
|
||||||
# This setting determines where JRuby will install gems. It is used for loading gems,
|
# This setting determines where JRuby will install gems. It is used for loading gems,
|
||||||
@ -24,7 +25,7 @@
|
|||||||
|
|
||||||
# PLEASE NOTE: Use caution when modifying the below settings. Modifying
|
# PLEASE NOTE: Use caution when modifying the below settings. Modifying
|
||||||
# these settings will change the value of the corresponding Puppet settings
|
# these settings will change the value of the corresponding Puppet settings
|
||||||
@@ -26,23 +30,23 @@ jruby-puppet: {
|
@@ -26,23 +31,23 @@ jruby-puppet: {
|
||||||
|
|
||||||
# (optional) path to puppet conf dir; if not specified, will use
|
# (optional) path to puppet conf dir; if not specified, will use
|
||||||
# /etc/puppetlabs/puppet
|
# /etc/puppetlabs/puppet
|
||||||
|
Loading…
Reference in New Issue
Block a user