Order of the class parameters is refactored

Order and indentation of those parameters are changed
to follow Puppet Style Guide recommendation [0].
Moreover, it will allow to an user to find much faster
a variable in a list of variables.

[0]. https://docs.puppetlabs.com/guides/style_guide.html

Change-Id: I005c80760893c1d0023104832af436ac3890e7b3
This commit is contained in:
Andrey Nikitin 2016-03-21 18:29:23 +03:00
parent 5796e7f8bd
commit be98d090a2
1 changed files with 8 additions and 8 deletions

View File

@ -15,15 +15,15 @@
# == Define: reviewday
#
define reviewday::site(
$gerrit_url = 'localhost',
$gerrit_port = '29418',
$gerrit_user = 'reviewday',
$reviewday_rsa_key_contents = undef,
$gerrit_port = '29418',
$gerrit_url = 'localhost',
$gerrit_user = 'reviewday',
$git_url = 'git://git.openstack.org/openstack-infra/reviewday',
$httproot = '/srv/static/reviewday',
$reviewday_gerrit_ssh_key = undef,
$reviewday_rsa_key_contents = undef,
$reviewday_rsa_pubkey_contents = undef,
$reviewday_gerrit_ssh_key = undef,
$git_url = 'git://git.openstack.org/openstack-infra/reviewday',
$httproot = '/srv/static/reviewday',
$serveradmin = 'webmaster@example.org'
$serveradmin = 'webmaster@example.org',
) {
file { '/var/lib/reviewday/.ssh/':