multinode-db1 test: Add rclone and statistics remote

This commit is contained in:
Magnus Andersson 2024-08-29 11:02:30 +02:00 committed by Micke Nordin
parent 2c13b2f51d
commit 6a5000a557

View file

@ -14,4 +14,28 @@ class sunetdrive::multinode_db(){
mode => '0744', mode => '0744',
} }
} }
if $facts["networking"]["fqdn"] =~ /^multinode-db1\.drive\.(test\.){1}sunet\.se$/ {
notify { 'hostmessage':
message => "We are on multinode-db1. Set up statistics environment.",
}
$rclone_url = 'https://downloads.rclone.org/rclone-current-linux-amd64.deb'
$local_path = '/tmp/rclone-current-linux-amd64.deb'
exec { 'rclone_deb':
command => "/usr/bin/wget -q ${rclone_url} -O ${local_path}",
creates => $local_path,
}
package { 'rclone':
ensure => installed,
provider => dpkg,
source => $local_path,
require => Exec['rclone_deb'],
}
file { '/root/.rclone.conf':
ensure => file,
content => template('sunetdrive/mariadb_backup/rclone.conf.erb'),
owner => 'root',
group => 'root',
mode => '0600',
}
}
} }