Skip to content

Commit

Permalink
Merge pull request #153 from elfranne/apt-arch
Browse files Browse the repository at this point in the history
Fix #152 : multi arch send out a notice
  • Loading branch information
bastelfreak authored Feb 4, 2019
2 parents 313ffb6 + edbfab3 commit 025a15b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,15 @@
class { '::apt': }
}
apt::source { 'grafana':
location => 'https://packages.grafana.com/oss/deb',
release => $grafana::repo_name,
repos => 'main',
key => {
location => 'https://packages.grafana.com/oss/deb',
release => $grafana::repo_name,
architecture => 'amd64,arm64,armhf',
repos => 'main',
key => {
'id' => '4E40DDF6D76E284A4A6780E48C8C34C524098CB6',
'source' => 'https://packages.grafana.com/gpg.key',
},
before => Package[$::grafana::package_name],
before => Package[$::grafana::package_name],
}
Class['apt::update'] -> Package[$::grafana::package_name]
}
Expand Down

0 comments on commit 025a15b

Please sign in to comment.