Sascha Vogt
2014-06-18 396e9bb50d7eca0d96da2c5fc5177a22f78d30b7
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() {