# File lib/chef/provider/service/macosx.rb, line 98
        def restart_service
          if @new_resource.restart_command
            super
          else
            stop_service
            sleep 1
            start_service
          end
        end