Skip to content

Commit

Permalink
Temporary fix to puppet-grafana to use /var/tmp, #576
Browse files Browse the repository at this point in the history
  • Loading branch information
fnoop committed Aug 23, 2017
1 parent f28bd48 commit 347b3b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/puppet-modules/grafana/manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@

wget::fetch { 'grafana':
source => $real_package_source,
destination => '/tmp/grafana.deb',
destination => '/var/tmp/grafana.deb',
}

package { $::grafana::package_name:
ensure => present,
provider => 'dpkg',
source => '/tmp/grafana.deb',
source => '/var/tmp/grafana.deb',
require => [Wget::Fetch['grafana'],Package['libfontconfig1']],
}
}
Expand Down

0 comments on commit 347b3b8

Please sign in to comment.