2020-10-12 14:20:52 +00:00
|
|
|
# -------------------------------------------
|
|
|
|
# Specifying the default settings:
|
|
|
|
# -------------------------------------------
|
2024-04-03 05:40:40 +00:00
|
|
|
case run_command('grep VERSION_ID /etc/os-release | awk -F\" \'{print $2}\'').stdout.chomp
|
|
|
|
when "20.04", "22.04"
|
|
|
|
cmd = 'LANG=C ip a | grep "inet " | grep -v -E "(127|172)" | cut -d" " -f6 | perl -pe "s/\/.+//g"'
|
|
|
|
|
|
|
|
when "18.04"
|
|
|
|
cmd = 'LANG=C /sbin/ifconfig | grep "inet " | grep -v -E "(127|172)" | cut -d" " -f10'
|
|
|
|
|
|
|
|
else
|
|
|
|
cmd = 'LANG=C /sbin/ifconfig | grep "inet addr" | grep -v -E "(127|172)" | awk "{print $2;}" | cut -d: -f2 | cut -f 1 -d " " | tail -1'
|
|
|
|
end
|
|
|
|
ipaddr = run_command(cmd).stdout.chomp
|
|
|
|
|
2020-10-12 14:20:52 +00:00
|
|
|
node.reverse_merge!({
|
|
|
|
'loki' => {
|
2024-04-03 05:40:40 +00:00
|
|
|
'ipaddr' => ipaddr,
|
2020-10-12 14:20:52 +00:00
|
|
|
'url' => 'https://github.com/grafana/loki/releases/download/',
|
|
|
|
'zip' => 'loki-linux-amd64.zip',
|
|
|
|
'storage' => '/opt/loki/',
|
|
|
|
'location' => '/usr/local/bin/'
|
|
|
|
},
|
|
|
|
})
|