aboutsummaryrefslogtreecommitdiff
path: root/tor/doinst.sh
diff options
context:
space:
mode:
authorSlack Coder <slackcoder@server.ky>2022-09-16 05:56:12 -0500
committerSlack Coder <slackcoder@server.ky>2022-09-16 05:56:12 -0500
commitb0c018b1fea9952a3fce2e744b4e7bc6ef7aae6a (patch)
treeae69546daffbc3d19fe552efb59f7f94fd50da0f /tor/doinst.sh
parenta570579f80e3f57dc76610d962a54ec14526ade2 (diff)
downloadslackbuilds-b0c018b1fea9952a3fce2e744b4e7bc6ef7aae6a.tar.xz
tor: remove
Diffstat (limited to 'tor/doinst.sh')
-rw-r--r--tor/doinst.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/tor/doinst.sh b/tor/doinst.sh
deleted file mode 100644
index 06cbc45..0000000
--- a/tor/doinst.sh
+++ /dev/null
@@ -1,28 +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...
-}
-
-preserve_perms() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- if [ -e $OLD ]; then
- cp -a $OLD ${NEW}.incoming
- cat $NEW > ${NEW}.incoming
- mv ${NEW}.incoming $NEW
- fi
- config $NEW
-}
-
-preserve_perms etc/rc.d/rc.tor.new
-config etc/tor/torrc.new
-config etc/logrotate.d/tor.new
-