# File lib/puppet/provider/service/daemontools.rb, line 127
127:   def setupservice
128:       if resource[:manifest]
129:         Puppet.notice "Configuring #{resource[:name]}"
130:         command = [ resource[:manifest], resource[:name] ]
131:         #texecute("setupservice", command)
132:         rv = system("#{command}")
133:       end
134:   rescue Puppet::ExecutionFailure => detail
135:       raise Puppet::Error.new( "Cannot config #{self.service} to enable it: #{detail}" )
136:   end