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 | e03dc47d843f4ee351f59528bed7d8d581f827f7 (patch) | |
tree | 5eafa7d59039974b0120c89ea300867fbdfc45c2 /mining/bin/newkey.sh | |
parent | 615f11da5f781e817d016afebed8ac26ed6c83e7 (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 'mining/bin/newkey.sh')
-rwxr-xr-x | mining/bin/newkey.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mining/bin/newkey.sh b/mining/bin/newkey.sh new file mode 100755 index 00000000..e71ab85b --- /dev/null +++ b/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 |