aboutsummaryrefslogtreecommitdiff
path: root/contrib/debian/bitcoind.postrm
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/debian/bitcoind.postrm')
-rw-r--r--contrib/debian/bitcoind.postrm35
1 files changed, 0 insertions, 35 deletions
diff --git a/contrib/debian/bitcoind.postrm b/contrib/debian/bitcoind.postrm
deleted file mode 100644
index aa128750d8..0000000000
--- a/contrib/debian/bitcoind.postrm
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-
-# setup bitcoin account, homedir etc
-
-set -e
-
-BCUSER="bitcoin"
-BCHOME="/var/lib/bitcoin"
-
-if [ "$1" = "purge" ]; then
-
- # The bitcoin user is left in place for now - This is to ensure that a new user
- # will not inherit the users UID/GID and inadvertently gain access to wallets etc
-
- # The homedir is also left intact to ensure that we don't accidentally delete a
- # wallet or something equally important
-
- echo
- echo "#"
- echo "# The bitcoin user (${BCUSER}) and data dir (${BCHOME})"
- echo "# were left intact."
- echo "#"
- echo "# Make sure to check \"${BCHOME}\" for wallets and other"
- echo "# important bits."
- echo "#"
- echo "# After backing up all vital data, cleanup can be completed"
- echo "# by running: sudo userdel -r ${BCUSER}"
- echo "#"
- echo
-
-fi
-
-#DEBHELPER#
-
-exit 0