Removed useless ugly quotes
This commit is contained in:
parent
83275ce64a
commit
ea29ce5eeb
2 changed files with 5 additions and 5 deletions
|
|
@ -43,7 +43,7 @@ fi
|
||||||
|
|
||||||
# Log main informations
|
# Log main informations
|
||||||
echo "Server model: $SERVER_MANUFACTURER $SERVER_MODEL"
|
echo "Server model: $SERVER_MANUFACTURER $SERVER_MODEL"
|
||||||
echo "iDRAC/IPMI host: \"$IDRAC_HOST\""
|
echo "iDRAC/IPMI host: $IDRAC_HOST"
|
||||||
|
|
||||||
# Log the fan speed objective, CPU temperature threshold and check interval
|
# Log the fan speed objective, CPU temperature threshold and check interval
|
||||||
echo "Fan speed objective: $DECIMAL_FAN_SPEED%"
|
echo "Fan speed objective: $DECIMAL_FAN_SPEED%"
|
||||||
|
|
@ -113,7 +113,7 @@ while true; do
|
||||||
# Check if user fan control profile is applied then apply it if not
|
# Check if user fan control profile is applied then apply it if not
|
||||||
if $IS_DELL_FAN_CONTROL_PROFILE_APPLIED; then
|
if $IS_DELL_FAN_CONTROL_PROFILE_APPLIED; then
|
||||||
IS_DELL_FAN_CONTROL_PROFILE_APPLIED=false
|
IS_DELL_FAN_CONTROL_PROFILE_APPLIED=false
|
||||||
COMMENT="CPU temperature decreased and is now OK (<= \"$CPU_TEMPERATURE_THRESHOLD\"°C), user's fan control profile applied."
|
COMMENT="CPU temperature decreased and is now OK (<= $CPU_TEMPERATURE_THRESHOLD°C), user's fan control profile applied."
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -50,9 +50,9 @@ function set_iDRAC_login_string() {
|
||||||
fi
|
fi
|
||||||
IDRAC_LOGIN_STRING='open'
|
IDRAC_LOGIN_STRING='open'
|
||||||
else
|
else
|
||||||
echo "iDRAC/IPMI username: \"$IDRAC_USERNAME\""
|
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\""
|
IDRAC_LOGIN_STRING="lanplus -H $IDRAC_HOST -U $IDRAC_USERNAME -P $IDRAC_PASSWORD"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue