Additional puppet-lint formatting

Change-Id: I6e5fa77a301eec30cff8e16bad33a91bfd95b13f
Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com>
Reviewed-on: https://review.openstack.org/17176
Reviewed-by: Jeremy Stanley <fungi@yuggoth.org>
Reviewed-by: James E. Blair <corvus@inaugust.com>
Approved: Jeremy Stanley <fungi@yuggoth.org>
Tested-by: Jenkins
This commit is contained in:
Paul Belanger 2012-11-29 19:40:14 -05:00 committed by Jenkins
parent c0c1a08acd
commit b87063de9e

View File

@ -1,12 +1,12 @@
# Class: pip
#
class pip {
package { "python-all-dev":
ensure => present
}
package { "python-pip":
package { 'python-all-dev':
ensure => present,
require => Package[python-all-dev]
}
package { 'python-pip':
ensure => present,
require => Package['python-all-dev'],
}
}