blob: fc76128a6f2330f31749ffa2ea6842df157d7852 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class nodo::role::bitcoin inherits nodo::base::vserver {
include nodo::role::vserver
include onion
include onion::socks
include onion::ssh
# Needed for the bitcoind package
apt::sources_list { 'sid.list':
content => "deb http://http.debian.net/debian/ unstable main contrib non-free\n"
}
class { 'bitcoind':
daemon_args => '-daemon -nolisten -proxy=127.0.0.1:9050',
}
}
|