Re: [Puppet Users] Re: Using bash for custom facts - results are strings, not booleans

2019-07-23 Thread Ben Ford
> On Jul 23, 2019, at 7:49 AM, Jesse Hathaway wrote: > > The docs are still out of date on this supported feature. One thing to note here is that whenever you find a docs page lacking, you can now provide feedback directly on the page. Just scroll to the bottom and give it a star ⭐️ rating.

[Puppet Users] Re: Puppet Platform 6.7.0 is now available!

2019-07-23 Thread comport3
https://tickets.puppetlabs.com/browse/PA-2809 On Wednesday, July 24, 2019 at 6:34:19 AM UTC+10, Puppet Product Updates wrote: > > This release contains bug fixes and enhancements, notably: > > Puppet 6.7 adds new `ca_fingerprint` setting verifies the CA bundle > download against a fingerprint. >

[Puppet Users] Re: Don't upgrade to Puppet v6.7.0 if you use the camptocamp-postfix module

2019-07-23 Thread comport3
https://tickets.puppetlabs.com/browse/PA-2809 -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.com. To view this discussion

[Puppet Users] Don't upgrade to Puppet v6.7.0 if you use the camptocamp-postfix module

2019-07-23 Thread comport3
The new version has introduced a regression that has broken our MTA (Postfix), based on the camptocamp-postfix module. Steps to reproduce on Ubuntu 18.04 LTS: ``` https://apt.puppetlabs.com/puppet6-release-bionic.deb dpkg -i puppet6-release-bionic.deb apt update;apt install -y puppet-agent puppet

[Puppet Users] Re: Puppet Platform 6.7.0 is now available!

2019-07-23 Thread comport3
This has introduced a regression that has broken our MTA (Postfix), based on the camptocamp-postfix module. Steps to reproduce on Ubuntu 18.04 LTS: ``` https://apt.puppetlabs.com/puppet6-release-bionic.deb dpkg -i puppet6-release-bionic.deb apt update;apt install -y puppet-agent puppet module ins

[Puppet Users] Puppet Platform 6.7.0 is now available!

2019-07-23 Thread Puppet Product Updates
This release contains bug fixes and enhancements, notably: Puppet 6.7 adds new `ca_fingerprint` setting verifies the CA bundle download against a fingerprint. The new Puppet Server 6.5 release includes an upgrade to Jetty. With this update, Puppet Server now defaults to stronger FIPS-compliant cip

[Puppet Users] Re: Using bash for custom facts - results are strings, not booleans

2019-07-23 Thread Jesse Hathaway
On Thursday, July 11, 2019 at 2:55:43 PM UTC-5, Prentice Bisbal wrote: > > I'm trying to use bash to create custom facts that are booleans, > Unfortunately, when I do, the values are interpreted as strings, and not > booleans. For example, here is my bash script, gdm.sh: As Ben and Josh stated

Re: [Puppet Users] Using bash for custom facts - results are strings, not booleans

2019-07-23 Thread Helmut Schneider
'Prentice Bisbal' via Puppet Users wrote: > I'm trying to use bash to create custom facts that are booleans, > Unfortunately, when I do, the values are interpreted as strings, and > not booleans. For example, here is my bash script, gdm.sh: > > #!/bin/bash > > PATH=/usr/bin:/bin:/usr/sbin:/sbin