# File lib/chef/provider/service/upstart.rb, line 146
        def start_service
          # Calling start on a service that is already started will return 1
          # Our 'goal' when we call start is to ensure the service is started
          if @current_resource.running
            Chef::Log.debug("#{@new_resource} already running, not starting")
          else
            if @new_resource.start_command
              super
            else
              run_command_with_systems_locale(:command => "/sbin/start #{@job}")
            end
          end
        end