src/main/java/com/googlesource/gerrit/plugins/verifystatus/init/PostgreSQLInitializer.java [24:31]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void initConfig(Section configSection) {
    final String defPort = "(postgresql default)";
    configSection.string("Server hostname", "hostname", "localhost");
    configSection.string("Server port", "port", defPort, true);
    configSection.string("Database name", "database", "cidb");
    configSection.string("Database username", "username", username());
    configSection.password("username", "password");
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/googlesource/gerrit/plugins/verifystatus/init/MySqlInitializer.java [24:31]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void initConfig(Section configSection) {
    final String defPort = "(mysql default)";
    configSection.string("Server hostname", "hostname", "localhost");
    configSection.string("Server port", "port", defPort, true);
    configSection.string("Database name", "database", "cidb");
    configSection.string("Database username", "username", username());
    configSection.password("username", "password");
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



