mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
52 lines
1.3 KiB
Bash
Executable File
52 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# $Id: edithosts.sh 9947 2010-06-25 19:34:24Z manuel $ $HeadURL: svn://svn.lab.vmops.com/repos/vmdev/java/patches/kvm/root/edithosts.sh $
|
|
# edithosts.sh -- edit the dhcphosts file on the routing domain
|
|
# $1 : the mac address
|
|
# $2 : the associated ip address
|
|
# $3 : the hostname
|
|
# @VERSION@
|
|
|
|
wait_for_dnsmasq () {
|
|
local _pid=$(/sbin/pidof dnsmasq)
|
|
for i in 0 1 2 3 4 5 6 7 8 9 10
|
|
do
|
|
sleep 1
|
|
_pid=$(/sbin/pidof dnsmasq)
|
|
[ "$_pid" != "" ] && break;
|
|
done
|
|
[ "$_pid" != "" ] && return 0;
|
|
echo "edithosts: timed out waiting for dnsmasq to start"
|
|
return 1
|
|
}
|
|
|
|
#delete any previous entries from the dhcp hosts file
|
|
sed -i /$1/d /etc/dhcphosts.txt
|
|
sed -i /$2,/d /etc/dhcphosts.txt
|
|
sed -i /$3,/d /etc/dhcphosts.txt
|
|
|
|
#put in the new entry
|
|
echo "$1,$2,$3,infinite" >>/etc/dhcphosts.txt
|
|
|
|
#delete leases to supplied mac and ip addresses
|
|
sed -i /$1/d /var/lib/misc/dnsmasq.leases
|
|
sed -i /"$2 "/d /var/lib/misc/dnsmasq.leases
|
|
sed -i /"$3 "/d /var/lib/misc/dnsmasq.leases
|
|
|
|
#put in the new entry
|
|
echo "0 $1 $2 $3 *" >> /var/lib/misc/dnsmasq.leases
|
|
|
|
#edit hosts file as well
|
|
sed -i /"$2 "/d /etc/hosts
|
|
sed -i /"$3"/d /etc/hosts
|
|
echo "$2 $3" >> /etc/hosts
|
|
|
|
# send SIGHUP to make dnsmasq re-read files
|
|
pid=$(/sbin/pidof dnsmasq)
|
|
if [ "$pid" != "" ]
|
|
then
|
|
kill -1 $(/sbin/pidof dnsmasq)
|
|
else
|
|
wait_for_dnsmasq
|
|
fi
|
|
|