Anthony O.
2014-08-08 bdcb8d6d8c858e71f21a274654a41d6d5ab799fc
src/main/java/com/gitblit/manager/ServicesManager.java
@@ -112,9 +112,21 @@
   }
   public boolean isServingRepositories() {
      return settings.getBoolean(Keys.git.enableGitServlet, true)
            || (gitDaemon != null && gitDaemon.isRunning())
            || (sshDaemon != null && sshDaemon.isRunning());
      return isServingHTTP()
            || isServingGIT()
            || isServingSSH();
   }
   public boolean isServingHTTP() {
      return settings.getBoolean(Keys.git.enableGitServlet, true);
   }
   public boolean isServingGIT() {
      return gitDaemon != null && gitDaemon.isRunning();
   }
   public boolean isServingSSH() {
      return sshDaemon != null && sshDaemon.isRunning();
   }
   protected void configureFederation() {