gw28914535 发表于 2017-01-16 12:32

pxe所用脚本记录

#/bin/bash


log="/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]
查看完整版本: pxe所用脚本记录