diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-02-07 08:59:49 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-03-06 09:30:22 +0700 |
commit | cf2b7d3ac0323cbed0a3fe04bcff6c206e3a96a3 (patch) | |
tree | b053d266acbcc17f33a564431224dc50c69032ae /development/latrace/doinst.sh | |
parent | 1fa99ebc11c25fcacf7cfb288126bfc1fa18df3b (diff) | |
download | slackbuilds-cf2b7d3ac0323cbed0a3fe04bcff6c206e3a96a3.tar.gz |
development/latrace: Removed (no longer build).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/latrace/doinst.sh')
-rw-r--r-- | development/latrace/doinst.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/development/latrace/doinst.sh b/development/latrace/doinst.sh deleted file mode 100644 index a7f4b1fde0..0000000000 --- a/development/latrace/doinst.sh +++ /dev/null @@ -1,15 +0,0 @@ -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/latrace.d/latrace.conf.new - |