diff options
| author | Luke Kanies <luke@madstop.com> | 2007-09-25 14:11:14 -0500 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2007-09-25 14:11:14 -0500 |
| commit | 8ec60118684fc32b65ce70ccfc009e07b7e6a3cd (patch) | |
| tree | f6e2b1adcbefb25672ef7cc8b9070d654978dac0 /lib/puppet/provider | |
| parent | 2e3306143b1f58765f48911ba433a119de323b84 (diff) | |
| parent | ab1b0344da8faf8d94a363ba4a64e0238845828a (diff) | |
Merge branch 'master' of ssh://reductivelabs.com/opt/rl/git/puppet into indirection
Diffstat (limited to 'lib/puppet/provider')
| -rwxr-xr-x | lib/puppet/provider/maillist/mailman.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/provider/maillist/mailman.rb b/lib/puppet/provider/maillist/mailman.rb index b556eecd7..903689178 100755 --- a/lib/puppet/provider/maillist/mailman.rb +++ b/lib/puppet/provider/maillist/mailman.rb @@ -101,9 +101,9 @@ Puppet::Type.type(:maillist).provide(:mailman) do # Pull the current state of the list from the full list. We're # getting some double entendre here.... def query - provider.class.instances.each do |list| + self.class.instances.each do |list| if list.name == self.name or list.name.downcase == self.name - return list.property_hash + return list.properties end end nil |
