Jira (PUP-6861) [regression] Mount options not idempotent

2016-11-02 Thread Jason Slagle (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jason Slagle commented on  PUP-6861 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: [regression] Mount options not idempotent  
 
 
 
 
 
 
 
 
 
 
I suspect 

PUP-6457
 is likely the culprit.  
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at https://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (FACT-1428) FreeBSD facts are missing from Facter 3.X onwards

2016-10-19 Thread Jason Slagle (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jason Slagle commented on  FACT-1428 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: FreeBSD facts are missing from Facter 3.X onwards  
 
 
 
 
 
 
 
 
 
 
FACT-1520. 
I got the networking ones - I'll do a diff tomorrow and figure out what's still missing. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at https://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (FACT-1520) Newer Facter is missing facts on FreeBSD

2016-10-19 Thread Jason Slagle (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jason Slagle created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Facter /  FACT-1520 
 
 
 
  Newer Facter is missing facts on FreeBSD  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 2016/10/19 4:06 PM 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Jason Slagle 
 
 
 
 
 
 
 
 
 
 
FreeBSD has no networking facts on FreeBSD. This limits the utility of facter, because without things like fqdn, Puppet does not work properly. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) 
 
 
 
 
  
 
 
 
 

Jira (FACT-1428) FreeBSD facts are missing from Facter 3.X onwards

2016-10-19 Thread Jason Slagle (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jason Slagle commented on  FACT-1428 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: FreeBSD facts are missing from Facter 3.X onwards  
 
 
 
 
 
 
 
 
 
 
Ok - I suspect I need to open a NEW ticket for this then since this one is resolved? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.14#64029-sha1:ae256fe) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at https://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-3132) Resources type unless_uid exhibits bad behavior

2014-08-23 Thread Jason Slagle (JIRA)
Title: Message Title










 

 Jason Slagle created an issue


















 Puppet /  PUP-3132



  Resources type unless_uid exhibits bad behavior 










Issue Type:

  Bug




Affects Versions:


 3.6.2




Assignee:

 Andy Parker




Components:


 Server




Created:


 23/Aug/14 8:31 AM




Priority:

  Normal




Reporter:

 Jason Slagle










The unless_uid tag in the resources type exhibits incorrect behavior.
First, it seems to not apply unless the unless_system_user is set. This is due to check here:



 # Make sure we don't purge users with specific uids
  def user_check(resource)
return true unless self[:name] == user
return true unless self[:unless_system_user]



Second, it seems to not work correctly in cases of arrays of integers. A manifest such as this fails to properly execute:



resources { 'user':
purge  = true,
   unless_uid =  [0,1,2,3,4,5,6,7,8,10,11,12,13,14,99,81,69,173,68,38,499,89,74,72,32,29,52,498,65534],
   unless_system_user = 1,
   noop = true,
}