Red Hat Satellite engineering is moving the tracking of its product development work on Satellite to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "Satellite project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs will be migrated starting at the end of May. If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "Satellite project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/SAT-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 1335847 - Smart Class Variable not being honored
Summary: Smart Class Variable not being honored
Keywords:
Status: CLOSED DUPLICATE of bug 1132453
Alias: None
Product: Red Hat Satellite
Classification: Red Hat
Component: Provisioning
Version: Unspecified
Hardware: Unspecified
OS: Unspecified
unspecified
medium
Target Milestone: Unspecified
Assignee: satellite6-bugs
QA Contact: Katello QA List
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2016-05-13 11:34 UTC by Jim Lyle
Modified: 2019-10-10 12:06 UTC (History)
3 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2016-05-29 17:59:50 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description Jim Lyle 2016-05-13 11:34:13 UTC
Description of problem:
Overriding a puppet class with a smart class variable based on a boolean validation fails.

Version-Release number of selected component (if applicable):


How reproducible:
Always

Steps to Reproduce:
Expect to see the smart class variable be honored for boolean = false to not run a specific puppet configuration change to the resolv.conf file based on the matcher value name ~ ls* however the client data json shows that it is being set to true still for that specific host even thought the Name value is correct in the json.


system.pp:
   if $enable_resolv_conf {
     file { '/etc/resolv.conf':
      ensure  => file,
      mode    => '0640',
      owner   => 'root',
      group   => 'root',
      content  => template('c2s/resolv.conf.erb'),
      }
 }


init.pp:
  $enable_resolv_conf                     = $c2s::params::enable_resolv_conf,
  validate_bool($enable_resolv_conf)

params.pp:
   $enable_resolv_conf = true


Smart Variable set to boolean, default value true using puppet default, and matcher name ~ ls* set to false.
Actual results:


Expected results:
Wildcard to be honored

Comment 3 Bryan Kearney 2016-05-29 17:59:50 UTC

*** This bug has been marked as a duplicate of bug 1132453 ***


Note You need to log in before you can comment on or make changes to this bug.