5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# File 'manifests/repo/yum.pp', line 5
class mariadb::repo::yum {
$version = $mariadb::repo::repo_version
$os = $mariadb::repo::os
$arch = $mariadb::repo::arch
yumrepo { 'mariadb':
baseurl => "http://yum.mariadb.org/${version}/${os}${::operatingsystemmajrelease}-${arch}",
descr => 'MariaDB',
enabled => '1',
gpgcheck => '1',
gpgkey => 'https://yum.mariadb.org/RPM-GPG-KEY-MariaDB',
}
# lint:ignore:spaceship_operator_without_tag
Yumrepo['mariadb'] -> Package<| |>
# lint:endignore
}
|