diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-02-23 22:02:35 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-02-23 22:02:35 +0700 |
commit | d157d6c6f2590a803f8bff0f3790ebfdb194df13 (patch) | |
tree | b96e4ba52f11e22002fef486a93ca5ddcc1d4d27 /system/localepurge/doinst.sh | |
parent | 8b5794764285d2c0ccd13167bdcb3de31c74bb1b (diff) |
system/localepurge: Removed (use bleachbit).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/localepurge/doinst.sh')
-rw-r--r-- | system/localepurge/doinst.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/system/localepurge/doinst.sh b/system/localepurge/doinst.sh deleted file mode 100644 index a631ab8e99b21..0000000000000 --- a/system/localepurge/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/locale.nopurge.new |