From f16fb94d17165ac947cc0737dd919021555a5ec7 Mon Sep 17 00:00:00 2001 From: Matthew Fillpot Date: Sat, 13 Aug 2011 09:04:36 -0300 Subject: network/axel: Added (Download Accelerator) Signed-off-by: Niels Horn --- network/axel/doinst.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 network/axel/doinst.sh (limited to 'network/axel/doinst.sh') diff --git a/network/axel/doinst.sh b/network/axel/doinst.sh new file mode 100644 index 0000000000..4247863758 --- /dev/null +++ b/network/axel/doinst.sh @@ -0,0 +1,14 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD|md5sum)" = "$(cat $NEW|md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/axelrc.new -- cgit v1.2.3