diff options
author | Devaev Maxim <[email protected]> | 2020-09-08 05:34:58 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-09-08 05:34:58 +0300 |
commit | 71aa087b3ebccbaf91e96ce24aac1bc6a3a3484a (patch) | |
tree | 79ff729def06254d85f404b1d841f878b17422a0 | |
parent | 605b67ca761bdb5f5c3b255434f30624fa82a6c1 (diff) |
fixed ipmi auth
-rw-r--r-- | kvmd/apps/ipmi/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/apps/ipmi/auth.py b/kvmd/apps/ipmi/auth.py index b9e4a644..0b42bf19 100644 --- a/kvmd/apps/ipmi/auth.py +++ b/kvmd/apps/ipmi/auth.py @@ -85,7 +85,7 @@ class IpmiAuthManager: credentials[ipmi_user] = IpmiUserCredentials( ipmi_user=ipmi_user, ipmi_passwd=ipmi_passwd, - kvmd_user=kvmd_passwd, + kvmd_user=kvmd_user, kvmd_passwd=kvmd_passwd, ) return credentials |