Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
Merge pull request #39 from quixoten/fix_conflict
Browse files Browse the repository at this point in the history
Avoid conflicts from build-essential
  • Loading branch information
dwerder committed Oct 13, 2015
2 parents ad5d3c1 + c63b35a commit f8e44b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
# install necessary packages for build.
case $::operatingsystem {
'Debian', 'Ubuntu': {
ensure_packages('build-essential', {'before' => Anchor['redis::prepare_build']} )
ensure_packages('build-essential')
Package['build-essential'] -> Anchor['redis::prepare_build']
}
'Fedora', 'RedHat', 'CentOS', 'OEL', 'OracleLinux', 'Amazon', 'Scientific': {
ensure_packages(['make', 'gcc', 'glibc-devel'], {'before' => Anchor['redis::prepare_build']})
Expand Down

0 comments on commit f8e44b2

Please sign in to comment.