aboutsummaryrefslogtreecommitdiff
path: root/contrib/debian/bin/bitcoind
diff options
context:
space:
mode:
authorMatt Corallo <matt@bluematt.me>2012-06-02 16:33:46 +0200
committerMatt Corallo <matt@bluematt.me>2012-06-02 16:45:14 +0200
commit8f6111bb9cd598954e9634d9fe4500fcf5ae83de (patch)
tree9c9a807acc2e034208e87b8be2d9f3afd652e2e9 /contrib/debian/bin/bitcoind
parent98474d3d6f07ff03f25f59f2016baf1f1385fbed (diff)
downloadbitcoin-8f6111bb9cd598954e9634d9fe4500fcf5ae83de.tar.xz
Update contrib/debian.
* Updates package description to note that blockchain now takes 2+ GB instead of 150+ MB. * Stop creating DB_CONFIG with DB_LOG_AUTO_REMOVE as that is set in Bitcoin itself now. * Update changelog with 0.6.2 and the current updates.
Diffstat (limited to 'contrib/debian/bin/bitcoind')
-rwxr-xr-xcontrib/debian/bin/bitcoind4
1 files changed, 0 insertions, 4 deletions
diff --git a/contrib/debian/bin/bitcoind b/contrib/debian/bin/bitcoind
index 0904f76f7b..a2f55a9138 100755
--- a/contrib/debian/bin/bitcoind
+++ b/contrib/debian/bin/bitcoind
@@ -5,14 +5,10 @@ set -e
umask 077
basedir=~/.bitcoin
-dbfile="$basedir/DB_CONFIG"
cfgfile="$basedir/bitcoin.conf"
[ -e "$basedir" ] || mkdir "$basedir"
[ -e "$cfgfile" ] || perl -le 'print"rpcpassword=",map{(a..z,A..Z,0..9)[rand 62]}0..9' > "$cfgfile"
-# Bitcoin does not clean up DB log files by default
-[ -e "$dbfile" ] || echo 'set_flags DB_LOG_AUTOREMOVE' > "$dbfile"
-
exec /usr/lib/bitcoin/bitcoind "$@"