diff options
author | Philip Lacroix <philnx at posteo dot de> | 2015-05-23 22:43:30 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-05-23 22:43:30 +0700 |
commit | eb4acbfd86e55104290a1f91b6217f29601021bd (patch) | |
tree | 2e04dac687fc7e4719dd0228025c0f4bd070eab6 /system/glances/doinst.sh | |
parent | 76726771cb8f34ef5e017edca08bc985847e037d (diff) |
system/glances: Updated for version 2.4.1.
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 d1bde8d89b2e7..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/glances.conf.new |