From: Peter Palfrader Date: Sat, 27 Oct 2007 20:24:33 +0000 (+0000) Subject: Add sample makefile and crontab X-Git-Tag: tor-0.2.0.10-alpha~123 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5e6fc79a8893e002cf718d042c86354c908a3d44;p=thirdparty%2Ftor.git Add sample makefile and crontab svn:r12232 --- diff --git a/contrib/auto-naming/Sample-Makefile b/contrib/auto-naming/Sample-Makefile new file mode 100644 index 0000000000..e3e0351df8 --- /dev/null +++ b/contrib/auto-naming/Sample-Makefile @@ -0,0 +1,20 @@ + +all: ../approved-routers + +update: + wget -q -O - http://tor.noreply.org/tor/status-vote/current/consensus | \ + ./process-consensus + +.PHONY: approved-routers-auto +approved-routers-auto: + ./build-approved-routers > "$@" + +.INTERMEDIATE: approved-routers +approved-routers: approved-routers-auto /etc/tor/approved-routers + cat $^ > "$@" + +../approved-routers: approved-routers + if ! diff -q "$<" "$@"; then \ + mv "$<" "$@" &&\ + (! [ -e /var/run/tor/tor.pid ] || kill -HUP `cat /var/run/tor/tor.pid`) ; \ + fi diff --git a/contrib/auto-naming/Sample-crontab b/contrib/auto-naming/Sample-crontab new file mode 100644 index 0000000000..b50c07bb81 --- /dev/null +++ b/contrib/auto-naming/Sample-crontab @@ -0,0 +1,3 @@ +MAILTO=admin +# cronjob for tor naming +23 * * * * make -s -C auto-naming update && make -s -C auto-naming