# File httpd/lib/symbiosis/domain/http.rb, line 28
    def should_have_stats=(bool)
      return ArgumentError, "Expecting true or false" unless [TrueClass, FalseClass].include?(bool.class)

      #
      # Invert the setting, since it is called "no-stats"
      #
      if true == bool
        set_param("no-stats", false, self.config_dir)
      else 
        set_param("no-stats", true, self.config_dir)
      end

      return bool
    end