diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-11-25 20:57:50 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-11-25 20:57:50 +0700 |
commit | 32d3c86697b5a14176fcf386e528848fe39c802d (patch) | |
tree | 9934ec61f1edcd0033d27f941b6722d437d70442 /system/glances/doinst.sh | |
parent | edd9202fddd7b25beb77138e4db4f2dab510f683 (diff) |
system/glances: Removed (use python3-glances).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/glances/doinst.sh')
-rw-r--r-- | system/glances/doinst.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/system/glances/doinst.sh b/system/glances/doinst.sh deleted file mode 100644 index 4490c14238f63..0000000000000 --- a/system/glances/doinst.sh +++ /dev/null @@ -1,11 +0,0 @@ -config() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - if [ ! -r $OLD ]; then - mv $NEW $OLD - elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then - rm $NEW - fi -} - -config etc/glances.conf.new |