https://www.puppet.com/community logo
Join Slack
Powered by
# office-hours
  • g

    Goran Brannstrom

    04/19/2022, 8:17 AM
    When one uses Puppet's _*pe_patch*_ class is there anyway to disable all patch schedules temporarily due to e.g, a service window when you don't want to "rock the boat" by patching?
  • g

    Goran Brannstrom

    04/19/2022, 8:22 AM
    Is there any way when you use Pupet's _*pe_patch*_ class to completely disable all patch schedules temporarily due to e.g, a service window when you don't want to "rock the boat" by patching?
  • g

    Goran Brannstrom

    04/19/2022, 8:30 AM
    When one uses Puppet's _*pe_patch*_ class is there anyway to disable all patch schedules temporarily due to e.g, a service window when you don't want to "rock the boat" by patching?
  • a

    Akbar Tokhi

    04/19/2022, 2:00 PM
    👋 Hello, team!
    👋 2
  • s

    Sean Champ

    04/20/2022, 5:10 PM
    Anyone familiar with puppet logging internals? I'm not seeing --logdest <file> working out with 'puppet catalog compile' here, cross-posed a question about this in #puppet
  • s

    Sean Champ

    04/20/2022, 5:11 PM
    cross-posted. can take a look at the source code, not sure if I'm familiar enough with the API to really figure out from the immediate source forms tho
  • s

    Sean Champ

    04/20/2022, 5:12 PM
    was trying to redirect all logging output to a temporary file, to produce only the catalog data on stdout
  • s

    Sean Champ

    04/20/2022, 5:13 PM
    can use '--log_level warning' but if it produces a warning on stdout that would not necessarily be the json anything might expect on stdin lol
  • s

    Sean Champ

    04/20/2022, 5:14 PM
    e.g $ catalog compile --log_level debug --logdest /tmp/log.txt --confdir /tmp/puppet_ctl | head # all the debug output goes to stdout, none to /tmp/log.txt
  • s

    Sean Champ

    04/20/2022, 5:16 PM
    well actually $ puppet catalog compile # [sic] 6/6
  • d

    Dr Bunsen Honeydew

    04/21/2022, 8:45 PM
    ☕ 🧑‍🏫PE Console is about to start up in 15 minutes
  • s

    steveax

    04/21/2022, 9:03 PM
    \o Good day y’all - console office hour has begun!
  • s

    steveax

    04/21/2022, 9:03 PM
    If you have any questions/suggestions for anything related to the console, any of the console services (RBAC, Classifier, Activity Service) or the Orchestrator, ask away.
  • d

    drobinson

    04/21/2022, 9:48 PM
    Has there been any thought on adding a way to export task output?
  • s

    steveax

    04/21/2022, 9:51 PM
    what sort of format would you want that in?
  • s

    steveax

    04/21/2022, 9:53 PM
    there is a CSV export for a task job currently
  • s

    Slackbot

    04/21/2022, 9:54 PM
    This message was deleted.
    💯 1
    d
    s
    • 3
    • 6
  • d

    Dr Bunsen Honeydew

    04/21/2022, 10:02 PM
    businessparrot Next up is 🧑‍🏫Puppet Core Team in 115 hours
  • s

    steveax

    04/21/2022, 10:03 PM
    includes these fields Node, State, Transport, Duration, Result, Started, Finished, Details
  • s

    steveax

    04/21/2022, 10:15 PM
    OK, that’s a wrap for today - we’ll be back in a couple of weeks. Y’all be good to yourselves!
  • d

    Dr Bunsen Honeydew

    04/26/2022, 4:45 PM
    ☕ 🧑‍🏫Puppet Core Team is about to start up in 15 minutes
  • j

    josh

    04/26/2022, 5:07 PM
    Hi folks, Core office hours are open! Have a question about open source puppet or Puppet Platform 6 & 7 releases, ask away!
  • r

    Robert Emanuele

    04/26/2022, 5:17 PM
    Hi! Does ‘puppet apply’ run custom facts?
  • b

    bastelfreak

    04/26/2022, 5:18 PM
    yes. if you hack pluginsync
  • b

    bastelfreak

    04/26/2022, 5:19 PM
    yes. if you hack pluginsync
  • j

    josh

    04/26/2022, 5:20 PM
    Yes it should evaluate custom facts before compiling the catalog. Note the locations where custom facts are loaded depends on the user you're running puppet as
  • r

    Robert Emanuele

    04/26/2022, 5:21 PM
    if I have them in ./site/profile/facter/lib/dataceter.rb will it find them? (function to extract the DC from the cert name)
  • r

    Robert Emanuele

    04/26/2022, 5:22 PM
    if I have them in ./site/profile/facter/lib/dataceter.rb will it find them? (function to extract the DC from the cert name)
  • j

    josh

    04/26/2022, 5:24 PM
    I'd expect that to be
    ./site/profile/lib/facter/dataceter.rb
    where
    profile
    is the "module" name
  • b

    bastelfreak

    04/26/2022, 5:24 PM
    Copy code
    ## hack pluginsync as file resource. only required for `puppet apply` usage
    file { $::settings::libdir: # lint:ignore:top_scope_facts
      ensure  => directory,
      source  => 'puppet:///plugins', # lint:ignore:puppet_url_without_modules
      recurse => true,
      purge   => true,
      backup  => false,
      noop    => false,
    }
12345...78Latest