diff --git a/updateStatics.sh b/updateStatics.sh index 1203d4b..c019e94 100644 --- a/updateStatics.sh +++ b/updateStatics.sh @@ -1,3 +1,14 @@ #!/bin/sh +# Simple script to update the dhcp-static files from git -cp static.conf /etc/dhcp/ \ No newline at end of file +# CONFIGURE THIS TO YOUR GIT DIRECTORY +GIT_REPO=/home/dhcp/dhcp-static + +# CONFIGURE THIS TO THE USER TO RUN THE GIT COMMANDS AS +USER=dhcp + +cd $GIT_REPO + +su -c "git pull" $USER + +cp $GIT_REPO/static.conf /etc/dhcp/static.conf