Skip to content

Commit

Permalink
Merge pull request #2201 from orrc/2.0
Browse files Browse the repository at this point in the history
[FIXED JENKINS-33857] Make initial admin password file end with a newline
  • Loading branch information
daniel-beck committed Apr 1, 2016
2 parents 6b6ae72 + 3659e9c commit b633f88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/jenkins/install/SetupWizard.java
Expand Up @@ -71,7 +71,7 @@ public SetupWizard(Jenkins j) throws IOException, InterruptedException {
// JENKINS-33599 - write to a file in the jenkins home directory
// most native packages of Jenkins creates a machine user account 'jenkins' to run Jenkins,
// and use group 'jenkins' for admins. So we allo groups to read this file
iapf.write(randomUUID, "UTF-8");
iapf.write(randomUUID + System.lineSeparator(), "UTF-8");
iapf.chmod(0640);

// Lock Jenkins down:
Expand Down

0 comments on commit b633f88

Please sign in to comment.