From bc607bf74c0360de04d25e96b04d47d1b1df1849 Mon Sep 17 00:00:00 2001 From: yinle Date: Mon, 20 Jan 2014 13:21:03 -0800 Subject: [PATCH] fix bug #3973 Ubuntu 13.10 diskful installation fails --- xCAT/debian/postinst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/xCAT/debian/postinst b/xCAT/debian/postinst index 68a15f6a8..bf457cc40 100644 --- a/xCAT/debian/postinst +++ b/xCAT/debian/postinst @@ -40,6 +40,12 @@ case "$1" in else xcatconfig -i -d -s fi + ver=$(cat /etc/issue |awk '{print $2}') + num=${ver%.*} + file="xcat.conf.apach24" + if [ $num -gt 12 ];then + mv /etc/apache2/conf.d/xcat.conf.apach24 /etc/apache2/conf-enabled/xcat.conf + fi /etc/init.d/apache2 restart ;;