diff options
author | Stuart Cardall <developer@it-offshore.co.uk> | 2014-06-24 22:11:48 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-06-25 14:46:04 +0000 |
commit | 0e05b58d1e8dfe579949be7ab83b4ba698214bf3 (patch) | |
tree | 8c1eceaf8f013fb003be277f818be4e05b30c0b2 /testing/bitcoin/bitcoin.post-install | |
parent | c1238794b6c5fdb908a474366e3565660213c6f9 (diff) | |
download | aports-0e05b58d1e8dfe579949be7ab83b4ba698214bf3.tar.bz2 aports-0e05b58d1e8dfe579949be7ab83b4ba698214bf3.tar.xz |
testing/bitcoin: update to 0.9.2.1
Environment patch removed as merged upstream as function SetupEnvironment()
Init script added so Bitcoin runs as user Bitcoin.
Diffstat (limited to 'testing/bitcoin/bitcoin.post-install')
-rw-r--r-- | testing/bitcoin/bitcoin.post-install | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/testing/bitcoin/bitcoin.post-install b/testing/bitcoin/bitcoin.post-install new file mode 100644 index 0000000000..9d2510fb2d --- /dev/null +++ b/testing/bitcoin/bitcoin.post-install @@ -0,0 +1,35 @@ +#!/bin/sh + +NORMAL="\033[1;0m" +STRONG="\033[1;1m" +GREEN="\033[1;32m" + +config=$(grep -F 'config=' /etc/init.d/bitcoin |sed 's/config=//') + +randgen() { + output=$(cat /dev/urandom | tr -dc '0-9a-zA-Z!@#$%^&*_+-' | head -c${1:-$1}) 2>/dev/null + echo $output +} + +findRandomTcpPort(){ + port=$(( 1024 + $(( $RANDOM % $(( 65534 - 1024 )) )) )) + while netstat -atn | grep -q :$port; do port=$(expr $port + 1); done; echo $port +} + +GenPasswd(){ + sed -i "/rpcuser=/ c \rpcuser=USER-"$(randgen 32)"" $config + sed -i "/rpcpassword=/ c \rpcpassword=PW-"$(randgen 64)"" $config + sed -i "/rpcport=/ c \rpcport="$(findRandomTcpPort)"" $config + print_green "Generated random user / password / port in:" " $config\n" +} + +print_green() { + local prompt="${STRONG}$1${GREEN}$2${NORMAL}" + printf "${prompt}%s" +} + +if grep -F "changeme" $config 1>/dev/null; then + GenPasswd +fi + +exit 0 |