aboutsummaryrefslogtreecommitdiff
path: root/bitcoin/doinst.sh
diff options
context:
space:
mode:
authorSlack Coder <slackcoder@server.ky>2025-08-26 16:07:00 -0500
committerSlack Coder <slackcoder@server.ky>2025-09-04 04:55:00 -0500
commitf7c9b27b590ed1527d913e6083fa3aa2b7ab3ca7 (patch)
tree55cf542918c3748231f006d7700d84c968c31d89 /bitcoin/doinst.sh
parent3f799ac48e925555c5a771558633675cf3819cdf (diff)
downloadslackbuilds-bitcoin.tar.xz
Add bitcoin: add rc.scriptbitcoin
Diffstat (limited to 'bitcoin/doinst.sh')
-rw-r--r--bitcoin/doinst.sh30
1 files changed, 30 insertions, 0 deletions
diff --git a/bitcoin/doinst.sh b/bitcoin/doinst.sh
new file mode 100644
index 0000000..eb6b05f
--- /dev/null
+++ b/bitcoin/doinst.sh
@@ -0,0 +1,30 @@
+if [ -x /usr/bin/update-desktop-database ]; then
+ /usr/bin/update-desktop-database -q usr/share/applications
+fi
+
+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/bitcoin/bitcoind.conf.new
+preserve_perms etc/rc.d/rc.bitcoind.new