Stop printing password to console

This commit is contained in:
NovaFox161
2025-01-25 16:42:18 -06:00
parent 2c44eadc82
commit 166ec4b469
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ if [[ $IDRAC_HOST == "local" ]]; then
IDRAC_LOGIN_STRING='open'
else
echo "iDRAC/IPMI username: $IDRAC_USERNAME"
echo "iDRAC/IPMI password: $IDRAC_PASSWORD"
#echo "iDRAC/IPMI password: $IDRAC_PASSWORD"
IDRAC_LOGIN_STRING="lanplus -H $IDRAC_HOST -U $IDRAC_USERNAME -P $IDRAC_PASSWORD"
fi