Skip to content

Commit

Permalink
(PUP-530) Make install.rb check for hiera before installing
Browse files Browse the repository at this point in the history
From ticket:
The `install.rb` script for puppet checks for facter and will refuse to install
puppet if facter is not on the system. However, puppet also cannot function
correctly without hiera and the `install.rb` script does not check for that.
The installation script that we ship in the tarball should also check for hiera
being present.

This commit adds hiera to the list of prerequisite libraries required before
install.rb will install puppet.

Signed-off-by: Moses Mendoza <moses@puppetlabs.com>
  • Loading branch information
Moses Mendoza committed Mar 19, 2014
1 parent 2c7bb7e commit 8b48219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.rb
Expand Up @@ -51,7 +51,7 @@
$haverdoc = false
end

PREREQS = %w{openssl facter cgi}
PREREQS = %w{openssl facter cgi hiera}
MIN_FACTER_VERSION = 1.5

InstallOptions = OpenStruct.new
Expand Down

0 comments on commit 8b48219

Please sign in to comment.