back port sysclone support

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.8@16253 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
sjing 2013-05-13 08:48:46 +00:00
parent 0724220b72
commit 2e54ebc370

View File

@ -0,0 +1,42 @@
#!/bin/sh
#set -x
#################################################################################
# Load functions and variables
#
. /etc/init.d/functions
#
################################################################################
#################################################################################
#
# main
#
{
ping_test
get_scripts_directory
if [ ! -z $HOSTNAME ]; then
logmsg
logmsg "This hosts name is: $HOSTNAME"
fi
run_pre_install_scripts
choose_autoinstall_script
write_variables
beep
run_autoinstall_script
} 2>&1 | send_monitor_stdout
#
#################################################################################
exit 0