From 8d2e4859fc76a1b0d2fe049bf872be886d21128d Mon Sep 17 00:00:00 2001 From: sjing Date: Mon, 13 May 2013 07:54:44 +0000 Subject: [PATCH] fix unrecognized chars in genesis git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@16247 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT/postscripts/configefi | 4 ++-- xCAT/postscripts/updatenetwork | 33 +++++++++++++++++---------------- 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/xCAT/postscripts/configefi b/xCAT/postscripts/configefi index 62ae70345..6067248ce 100644 --- a/xCAT/postscripts/configefi +++ b/xCAT/postscripts/configefi @@ -1,2 +1,2 @@ -echo "Setting Boot Manager for the next boot." -efibootmgr -c -l \\EFI\\redhat\\grub.efi -L Linux \ No newline at end of file +echo "Setting Boot Manager for the next boot." +efibootmgr -c -l \\EFI\\redhat\\grub.efi -L Linux diff --git a/xCAT/postscripts/updatenetwork b/xCAT/postscripts/updatenetwork index a891467ec..d40cfdbd2 100644 --- a/xCAT/postscripts/updatenetwork +++ b/xCAT/postscripts/updatenetwork @@ -1,16 +1,17 @@ -. /tmp/post-install/variables.txt - -echo "Updating hostname to $HOSTNAME" -sed -i "s/HOSTNAME=.*/HOSTNAME=$HOSTNAME/g" /etc/sysconfig/network - -hostname $HOSTNAME - -echo "Old ifcfg-$DEVICE is:" -cat /etc/sysconfig/network-scripts/ifcfg-$DEVICE - -HWADDR=`ifconfig $DEVICE|grep HWaddr|awk '{print $5}'` -sed -i "s/HWADDR=.*/HWADDR="$HWADDR"/g" /etc/sysconfig/network-scripts/ifcfg-$DEVICE -sed -i "s/UUID=.*//g" /etc/sysconfig/network-scripts/ifcfg-$DEVICE - -echo "New ifcfg-$DEVICE is:" -cat /etc/sysconfig/network-scripts/ifcfg-$DEVICE +#!/bin/bash +. /tmp/post-install/variables.txt + +echo "Updating hostname to $HOSTNAME" +sed -i "s/HOSTNAME=.*/HOSTNAME=$HOSTNAME/g" /etc/sysconfig/network + +hostname $HOSTNAME + +echo "Old ifcfg-$DEVICE is:" +cat /etc/sysconfig/network-scripts/ifcfg-$DEVICE + +HWADDR=`ifconfig $DEVICE|grep HWaddr|awk '{print $5}'` +sed -i "s/HWADDR=.*/HWADDR="$HWADDR"/g" /etc/sysconfig/network-scripts/ifcfg-$DEVICE +sed -i "s/UUID=.*//g" /etc/sysconfig/network-scripts/ifcfg-$DEVICE + +echo "New ifcfg-$DEVICE is:" +cat /etc/sysconfig/network-scripts/ifcfg-$DEVICE