X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=update.sh;h=c5838f458a8818998e28aed5e0d908bbbe6428d5;hb=83c5fb200064d0775bcc0c2b3eea187ec07195c5;hp=ed8f85ed84a8bb044a533627f5a090a4ac08276c;hpb=3e0bbeaa77f2305ae77c99654c3e46474fe0a0e2;p=matches%2Fhonours.git diff --git a/update.sh b/update.sh index ed8f85ed..c5838f45 100755 --- a/update.sh +++ b/update.sh @@ -1,19 +1,47 @@ #!/bin/bash # Script to update all the honours stuff on a regular basis +# Called by cron(8) +# Sam Moore 2012 -git add update.sh -git add papers -git add research -git add thesis/proposal/*.tex -git add thesis/proposal/*.pdf -git add thesis/proposal/*.bib -git add thesis/*.tex -git add thesis/*.pdf -git add thesis/*.bib -git add course/semester2 - -git commit -m "Automatic commit at $(date)" +# Need to cd to the directory, otherwise nothing will work +directory="/home/sam/Documents/University/honours/" +cd "$directory" + +# Need to do this too. Apparently +git="/usr/bin/git" +eval $(ssh-agent) 2>/dev/null +ssh-add /home/sam/.ssh/honours 2>/dev/null + +# This bit plots any open data files, so I can remotely view them +gnuplot="/usr/bin/gnuplot" +for data in $(lsof | grep interface | grep $(date +%Y) | awk '{print $NF}'); do + $gnuplot -e "set term png; set output \"$data.png\"; plot \"$data\" u 1:3 w lp title \"ADC4\", \"$data\" u 1:5 w lp title \"ADC5\"" +done + +$git pull git.ucc # This is probably a good thing to do... + +$git add update.sh +$git add papers +$git add research +$git add thesis/proposal/*.tex +$git add thesis/proposal/*.pdf +$git add thesis/proposal/*.bib +$git add thesis/*.tex +$git add thesis/*.pdf +$git add thesis/*.bib +$git add course/semester2 + +# This sets a commit message and commits. Commit will only be done if there are changed files. +fortune="/usr/games/fortune" +message="" +if [ "$message" == "" ]; then + message=$(echo "Automatic commit. $(date)"; echo ""; $fortune; echo "") +fi +$git commit -m "$message" if [ "$?" == 0 ]; then - git push git.ucc + echo "Commit at $(date)" >> commits.log + $git push git.ucc 2>&1 >> commits.log fi + +kill -9 $SSH_AGENT_PID