Skip to content
This repository has been archived by the owner on Apr 8, 2019. It is now read-only.

Commit

Permalink
GTNPORTAL-3469 PortalSetupCommand does not ensure that initialpassword
Browse files Browse the repository at this point in the history
is written on a new line
  • Loading branch information
ppalaga committed May 2, 2014
1 parent 8668798 commit 1c722a1
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -346,6 +346,7 @@ public void process() throws SetupCommandException {
private void writeRootPasswordLine(Writer w) throws SetupCommandException, IOException {
try {
String encodedPassword = PortalSetupService.encodePassword(password);
w.write('\n');
w.write(PortalSetupService.ROOT_PASSWORD_PROPERTY);
w.write('=');
w.write(encodedPassword);
Expand Down

0 comments on commit 1c722a1

Please sign in to comment.