From 4fb578678ca1ee2838c72052e715060a4b4c92f9 Mon Sep 17 00:00:00 2001 From: xq2005 Date: Mon, 4 Nov 2013 22:50:19 -0800 Subject: [PATCH] bug3872: stay on 'booting' when installing sles10 --- xCAT-server/share/xcat/install/scripts/post.xcat | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/xCAT-server/share/xcat/install/scripts/post.xcat b/xCAT-server/share/xcat/install/scripts/post.xcat index 70292126a..add65c92c 100644 --- a/xCAT-server/share/xcat/install/scripts/post.xcat +++ b/xCAT-server/share/xcat/install/scripts/post.xcat @@ -159,7 +159,11 @@ chmod 755 /opt/xcat/xcatinstallpost export OSVER=#TABLE:nodetype:THISNODE:os# if [[ $OSVER == sles* ]]; then - /sbin/insserv -p /etc/init.d xcatpostinit1 + if [[ $OSVER == sles10* ]];then + /sbin/insserv xcatpostinit1 + else + /sbin/insserv -p /etc/init.d xcatpostinit1 + fi fi #chkconfig --add xcatpostinit1 chkconfig xcatpostinit1 on