Order of the class parameters is refactored

Order of those parameters is 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: I6930da346e9bb4f2c7ceb865e8562468d9d5a19e
This commit is contained in:
Andrey Nikitin 2016-03-20 01:38:51 +03:00
parent 8329ddc278
commit ee55a0b325
1 changed files with 4 additions and 4 deletions

View File

@ -1,17 +1,17 @@
# == Class: apps_site
#
class apps_site (
$vhost_name = $::fqdn,
$root_dir = '/opt/apps_site',
$install_dir = '/usr/local/lib/python2.7/dist-packages/openstack_catalog/',
$serveradmin = "webmaster@${::domain}",
$commit = 'master',
$install_dir = '/usr/local/lib/python2.7/dist-packages/openstack_catalog/',
$root_dir = '/opt/apps_site',
$serveradmin = "webmaster@${::domain}",
$ssl_cert_file_contents = undef,
$ssl_key_file_contents = undef,
$ssl_chain_file_contents = undef,
$ssl_cert_file = '/etc/ssl/certs/ssl-cert-snakeoil.pem',
$ssl_key_file = '/etc/ssl/private/ssl-cert-snakeoil.key',
$ssl_chain_file = '/etc/ssl/certs/ca-certificates.crt',
$vhost_name = $::fqdn,
) {
include ::httpd::ssl
include ::httpd::mod::wsgi