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