summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDominic Cleal <dcleal@redhat.com>2011-02-19 19:00:36 +0000
committerDominic Cleal <dcleal@redhat.com>2011-02-19 19:02:30 +0000
commit7639d5f2de43a117796e91e36f6ac63c4ff05591 (patch)
treee2fee6f46edb45ddc186a354681a394480f6da10 /lib
parentf5e21f0796038f8635af0f826eab9d62b494ba49 (diff)
downloadpuppet-7639d5f2de43a117796e91e36f6ac63c4ff05591.tar.gz
puppet-7639d5f2de43a117796e91e36f6ac63c4ff05591.tar.xz
puppet-7639d5f2de43a117796e91e36f6ac63c4ff05591.zip
Fix non-existent method called in SMF manifest import exception message, updated spec
Diffstat (limited to 'lib')
-rwxr-xr-xlib/puppet/provider/service/smf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/provider/service/smf.rb b/lib/puppet/provider/service/smf.rb
index 042d33980..f6f221a7c 100755
--- a/lib/puppet/provider/service/smf.rb
+++ b/lib/puppet/provider/service/smf.rb
@@ -27,7 +27,7 @@ Puppet::Type.type(:service).provide :smf, :parent => :base do
end
end
rescue Puppet::ExecutionFailure => detail
- raise Puppet::Error.new( "Cannot config #{self.service} to enable it: #{detail}" )
+ raise Puppet::Error.new( "Cannot config #{self.name} to enable it: #{detail}" )
end
def enable