dhcp-static/updateStatics.sh

26 lines
538 B
Bash
Raw Normal View History

#!/bin/bash
2013-03-24 16:12:19 +01:00
# Simple script to update the dhcp-static files from git
2013-03-24 15:43:04 +01:00
2013-03-24 16:12:19 +01:00
# CONFIGURE THIS TO YOUR GIT DIRECTORY
2013-03-24 16:24:05 +01:00
GIT_REPO=/home/dhcpstatic/dhcp-static
2013-03-24 16:12:19 +01:00
# CONFIGURE THIS TO THE USER TO RUN THE GIT COMMANDS AS
2013-03-24 16:24:05 +01:00
USER=dhcpstatic
2013-03-24 16:12:19 +01:00
cd $GIT_REPO
su -c "git pull" $USER
if ! cmp $GIT_REPO/static.conf /etc/dhcp/static.conf >/dev/null 2>&1 ;
then
cp $GIT_REPO/static.conf /etc/dhcp/static.conf
/usr/sbin/service isc-dhcp-server restart
fi
ps -C "dhcpd" 2>&1>/dev/null
if [[ $? -ne 0 ]]
then
/usr/sbin/service isc-dhcp-server restart
fi