Cleanup puppet parser warnings.
Cleanup warnings for missing '$' in class parameter definitions and for non upper cased requirements. Change-Id: I5fe04a304b084f4c6d09cfb23a9dfae2548a8e22 Reviewed-on: https://review.openstack.org/18704 Reviewed-by: James E. Blair <corvus@inaugust.com> Reviewed-by: Paul Belanger <paul.belanger@polybeacon.com> Approved: Jeremy Stanley <fungi@yuggoth.org> Reviewed-by: Jeremy Stanley <fungi@yuggoth.org> Tested-by: Jenkins
This commit is contained in:
parent
24a44746f0
commit
b2573d3d33
@ -15,7 +15,7 @@ define etherpad_lite::buildsource(
|
||||
user => $user,
|
||||
cwd => $dir,
|
||||
creates => $creates,
|
||||
before => exec["make in ${dir}"],
|
||||
before => Exec["make in ${dir}"],
|
||||
}
|
||||
|
||||
exec { "make in ${dir}":
|
||||
@ -25,7 +25,7 @@ define etherpad_lite::buildsource(
|
||||
cwd => $dir,
|
||||
timeout => $timeout,
|
||||
creates => $creates,
|
||||
before => exec["make install in ${dir}"],
|
||||
before => Exec["make install in ${dir}"],
|
||||
}
|
||||
|
||||
exec { "make install in ${dir}":
|
||||
|
@ -15,8 +15,8 @@
|
||||
# Class to install dependencies for uploading python packages to pypi.
|
||||
#
|
||||
class openstack_project::pypi_slave (
|
||||
pypi_password,
|
||||
pypi_username = 'openstackci'
|
||||
$pypi_password,
|
||||
$pypi_username = 'openstackci'
|
||||
) {
|
||||
include openstack_project::slave
|
||||
include pip
|
||||
|
Loading…
Reference in New Issue
Block a user