#This is a test change #!/bin/bash #iLO Password Updater script #set -x function iLO-password-updater() { #Build xml config file for ILO cat << ENDILO > /tmp/ilo.pass ENDILO #Apply new password to the iLO card hponcfg -f /tmp/ilo.pass echo "iLO password changed on $(hostname)" } ########################################################################################## ## Control logic for the script ## ########################################################################################## main() { echo -e "iLO password changer initiated on $(hostname) at $(date)\n" iLO-password-updater } main