# File lib/puppet/provider/service/base.rb, line 91 91: def startcmd 92: if @resource[:binary] 93: return @resource[:binary] 94: else 95: raise Puppet::Error, 96: "Services must specify a start command or a binary" 97: end 98: end