OpenStackID deploy scripts use curl

Our provider base images don't necessarily come with the curl
command-line utility preinstalled, so make sure it's in place before
attempting to bootstrap the service.

Change-Id: Ibdaadc804e8846256eb193d480c40ac9137d0395
This commit is contained in:
Jeremy Stanley 2014-10-08 22:15:28 +00:00
parent 999ec889c2
commit 8a1580e0f7

View File

@ -64,6 +64,11 @@ class openstackid (
ensure => present,
}
# the deploy scripts use the curl CLI
package { 'curl':
ensure => present,
}
group { 'openstackid':
ensure => present,
}
@ -211,6 +216,7 @@ class openstackid (
File['/etc/openstackid/database.php'],
File['/etc/openstackid/log.php'],
File['/etc/openstackid/environment.php'],
Package['curl'],
Package[$php5_packages] ],
}