Basic LND installation

This commit is contained in:
Basti 2020-08-23 12:37:53 +02:00
parent 0005f9ab7d
commit d5448e8240
Signed by untrusted user: basti
GPG Key ID: 9F88009D31D99C72
4 changed files with 64 additions and 4 deletions

View File

@ -18,6 +18,7 @@
"kosmos-base",
"kosmos-base::default",
"kosmos-bitcoin::source",
"kosmos-bitcoin::lnd",
"apt::default",
"timezone_iii::default",
"timezone_iii::debian",
@ -32,7 +33,10 @@
"postfix::_attributes",
"postfix::sasl_auth",
"hostname::default",
"ark::default"
"ark::default",
"git::default",
"git::package",
"golang::default"
],
"platform": "ubuntu",
"platform_version": "20.04",
@ -50,6 +54,7 @@
},
"run_list": [
"recipe[kosmos-base]",
"recipe[kosmos-bitcoin::source]"
"recipe[kosmos-bitcoin::source]",
"recipe[kosmos-bitcoin::lnd]"
]
}

View File

@ -24,3 +24,7 @@ node.default['bitcoin']['conf'] = {
zmqpubrawblock: 'tcp://127.0.0.1:8337',
zmqpubrawtx: 'tcp://127.0.0.1:8338'
}
node.default['lnd']['repo'] = 'https://github.com/lightningnetwork/lnd'
node.default['lnd']['revision'] = 'v0.11.0-beta'
node.default['lnd']['source_dir'] = '/opt/lnd'

View File

@ -19,5 +19,6 @@ chef_version '>= 14.0'
#
# source_url 'https://github.com/<insert_org_here>/kosmos-bitcoin'
depends "ark"
depends "golang"
depends 'ark'
depends 'git'
depends 'golang'

View File

@ -0,0 +1,50 @@
#
# Cookbook:: kosmos-bitcoin
# Recipe:: lnd
#
# The MIT License (MIT)
#
# Copyright:: 2020, Kosmos Developers
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
include_recipe "git"
include_recipe "golang"
# bitcoin_user = node['bitcoin']['username']
# bitcoin_group = node['bitcoin']['usergroup']
# bitcoin_datadir = node['bitcoin']['datadir']
# bitcoin_conf_path = node['bitcoin']['conf_path']
git node['lnd']['source_dir'] do
repository node['lnd']['repo']
revision node['lnd']['revision']
action :sync
notifies :run, 'bash[compile_lnd]', :immediately
end
bash "compile_lnd" do
cwd node['lnd']['source_dir']
code <<-EOH
source /etc/profile.d/golang.sh
make clean && make && make install
EOH
action :nothing
end