diff options
author | MrArmonius <mrarmonius@gmail.com> | 2021-07-16 16:56:56 +0200 |
---|---|---|
committer | MrArmonius <mrarmonius@gmail.com> | 2021-07-19 18:57:40 +0200 |
commit | 9a8c19ec0f9b2f09daab244a49c67904c5c086aa (patch) | |
tree | f30c61228022493823ca812b292fee2285b2d233 /main.go | |
parent | da627ac39ad437bfb6be7e5f343933a0ca4e5073 (diff) | |
download | bottin-9a8c19ec0f9b2f09daab244a49c67904c5c086aa.tar.gz bottin-9a8c19ec0f9b2f09daab244a49c67904c5c086aa.zip |
Bottin's Test V2.0 with Framework Testing
V2 the test end-to-end,
Tests made similar to V1.0,
Add the possibility to pararellize the tests,
Create an environnement for easy integration of news test,
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -330,7 +330,7 @@ func (server *Server) init() error { } admin_pass_str = base64.RawURLEncoding.EncodeToString(admin_pass) } else { - server.logger.Printf("It seems that exists a password in environnement variable") + server.logger.Debug("BOTTIN_DEFAULT_ADMIN_PW environment variable is set, using it for admin's password") } admin_pass_hash := SSHAEncode([]byte(admin_pass_str)) |