diff --git a/pkg/util/util.go b/pkg/util/util.go index 0cbb5da04..65cd522d4 100644 --- a/pkg/util/util.go +++ b/pkg/util/util.go @@ -46,7 +46,9 @@ var ( /** Create new Openshift 4 user command */ func NewUserCommand() { password := GeneratePasswd(6) - NewUserCmd = NewProcess("htpasswd", "-n", "che-user", password) + // Todo: move password info to the secret and CR. + logrus.Info("====Pswd: " + password) + NewUserCmd = NewProcess("htpasswd", "-nb", "che-user", password) } func ContainsString(slice []string, s string) bool {