diff options
author | root <root@chinaman.(none)> | 2011-07-08 17:24:48 +0200 |
---|---|---|
committer | root <root@chinaman.(none)> | 2011-07-08 17:24:48 +0200 |
commit | 185c18385da6ae11e7325a56bc4bdb0b6755886c (patch) | |
tree | da1102abf533163af97df91d8e8bad1ddf5090b1 /btc/mining/bin/newkey.sh | |
parent | 6a6b56c1821d435131be8c9b67f4406816b1409a (diff) |
mining: added archlinux cruise control
mining/Makefile: added archlinux cruise control (auto installer) which always does the right thing.
loosely after http://rubyists.github.com/2011/06/08/how-to-build-a-namecoin-or-bitcoin-miner-in98-easy-steps.html
mining/{user/,}/bin:renamed
mining/bin/newkey.sh: add policy Xorg keygen
Diffstat (limited to 'btc/mining/bin/newkey.sh')
-rwxr-xr-x | btc/mining/bin/newkey.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/btc/mining/bin/newkey.sh b/btc/mining/bin/newkey.sh new file mode 100755 index 00000000..e71ab85b --- /dev/null +++ b/btc/mining/bin/newkey.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +auth=$HOME/.Xauthority +cp /dev/null $auth + +if [ "$1" = "-md5" ]; then + key=`pstat -pfS | md5` +else + key=`perl -e 'srand; printf int(rand(10000000000000))'` + key=$key$key +fi + +xauth add unix:0 . $key + +xauth add ${HOST}:0 . $key |