Add todo.

Signed-off-by: Oleksandr Andriienko <oandriie@redhat.com>
pull/597/head
Oleksandr Andriienko 2020-12-27 22:27:25 +02:00
parent 81d0cb603b
commit 4e096cfeb6
1 changed files with 3 additions and 1 deletions

View File

@ -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 {