2013-05-13 07:54:44 +00:00
|
|
|
#!/bin/bash
|
|
|
|
. /tmp/post-install/variables.txt
|
|
|
|
|
2013-08-20 09:09:46 +00:00
|
|
|
#delete the udev rule in the image
|
|
|
|
rule_file=`ls /etc/udev/rules.d/*net_persistent_names.rules`
|
|
|
|
if [ -n "$rule_file" ];then
|
|
|
|
rm -f $rule_file
|
|
|
|
fi
|
|
|
|
|
2013-05-13 07:54:44 +00:00
|
|
|
hostname $HOSTNAME
|
|
|
|
|
2013-10-16 15:43:20 +00:00
|
|
|
#write the config files, the device name may change after reboot
|
|
|
|
#so use the dhcp for all interface
|
|
|
|
device_names=`ifconfig -a | grep -i hwaddr | grep -i 'Ethernet' | grep -v usb| awk '{print $1}'`
|
2013-08-20 09:09:46 +00:00
|
|
|
str_cfg_file=''
|
|
|
|
if [ -d "/etc/sysconfig/network-scripts/" ];then
|
|
|
|
#redhat
|
2013-10-16 15:43:20 +00:00
|
|
|
grep -i HOSTNAME /etc/sysconfig/network
|
2013-10-14 11:31:18 +00:00
|
|
|
if [ $? -eq 0 ];then
|
|
|
|
sed -i "s/HOSTNAME=.*/HOSTNAME=$HOSTNAME/g" /etc/sysconfig/network
|
|
|
|
else
|
|
|
|
echo "HOSTNAME=$HOSTNAME" >> /etc/sysconfig/network
|
|
|
|
fi
|
2013-10-16 15:43:20 +00:00
|
|
|
for i in $device_names;do
|
|
|
|
str_cfg_file="/etc/sysconfig/network-scripts/ifcfg-$i"
|
|
|
|
echo "DEVICE=$i" > $str_cfg_file
|
|
|
|
echo "BOOTPROTO=dhcp" >> $str_cfg_file
|
|
|
|
echo "NM_CONTROLLED=yes" >> $str_cfg_file
|
|
|
|
echo "ONBOOT=yes" >> $str_cfg_file
|
|
|
|
done
|
2013-08-20 09:09:46 +00:00
|
|
|
elif [ -d "/etc/sysconfig/network/" ];then
|
|
|
|
#suse
|
2013-08-23 05:58:53 +00:00
|
|
|
echo "$HOSTNAME" > /etc/HOSTNAME
|
2013-10-16 15:43:20 +00:00
|
|
|
for i in $device_names;do
|
|
|
|
str_cfg_file="/etc/sysconfig/network/ifcfg-$i"
|
|
|
|
echo "DEVICE=$i" > $str_cfg_file
|
|
|
|
echo "BOOTPROTO=dhcp" >> $str_cfg_file
|
|
|
|
echo "STARTMODE=onboot" >> $str_cfg_file
|
|
|
|
echo "DHCLIENT_PRIMARY_DEVICE=yes" >> $str_cfg_file
|
|
|
|
done
|
2013-08-20 09:09:46 +00:00
|
|
|
else
|
|
|
|
#ubuntu
|
2013-08-27 03:16:47 +00:00
|
|
|
echo "Does not support ubuntu."
|
|
|
|
exit 1
|
2013-08-20 09:09:46 +00:00
|
|
|
fi
|
|
|
|
|