pxe所用脚本记录
#/bin/bashlog="/mnt/disk/usr/custom/pxe.log"
time=$(date +"%F %T")
#defined function
function pxeos()
{
ipmitool chassis bootdev pxe
sleep 3
reboot
}
#copy tools to the system
cp -r $dir/after /mnt/disk/usr/custom
if [ $? -eq 0];then
echo "$time cp after success" >> $log
else
echo "$time cp after failed" >> $log
fi
#execute permission
chmod 755 -R /mnt/disk/usr/custom/after
exit 0
页:
[1]