diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2016-01-02 02:43:14 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | dadf07b737dcb5876b2ef338abe25ad66238f83e (patch) | |
tree | 9f2bee4f84ed987c2c0b32dd109196973f1cf8b9 /libraries/libtirpc/doinst.sh | |
parent | fe8b34b6f174445bed5b4de0b3290ab8214078da (diff) |
libraries/libtirpc: Removed (included in Slackware 14.2)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/libtirpc/doinst.sh')
-rw-r--r-- | libraries/libtirpc/doinst.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libraries/libtirpc/doinst.sh b/libraries/libtirpc/doinst.sh deleted file mode 100644 index cc5dc4a3877a7..0000000000000 --- a/libraries/libtirpc/doinst.sh +++ /dev/null @@ -1,14 +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/netconfig.new |