diff options
author | Alan Hicks <alan@lizella.net> | 2010-05-13 00:59:56 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-13 00:59:56 +0200 |
commit | f897958711c89eb6012c188947c78edea0d05252 (patch) | |
tree | 41e53cf47e68037a8775178f2f1265456f044005 /network/dahdi-tools/doinst.sh | |
parent | b1630c00026679eb31028097ef2fdf2fba808e86 (diff) |
network/dahdi-tools: Added to 13.0 repository
Diffstat (limited to 'network/dahdi-tools/doinst.sh')
-rw-r--r-- | network/dahdi-tools/doinst.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/network/dahdi-tools/doinst.sh b/network/dahdi-tools/doinst.sh new file mode 100644 index 0000000000000..62c29ca99be52 --- /dev/null +++ b/network/dahdi-tools/doinst.sh @@ -0,0 +1,19 @@ +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/dahdi/init.conf.new +config etc/dahdi/modules.new +config etc/dahdi/system.conf.new +config etc/modprobe.d/dahdi.conf.new +config etc/modprobe.d/dahdi.blacklist.conf.new +config etc/dahdi/genconf_parameters.new + |