Order of the class parameters is refactored

Order and intendation 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: I1026ad3b5072128a92ada761123bd21a4cdd4058
This commit is contained in:
Andrey Nikitin 2016-03-21 18:16:05 +03:00
parent b0bba476c3
commit 036ea2c163
1 changed files with 5 additions and 5 deletions

View File

@ -17,12 +17,12 @@
# http://packages.ubuntu.com/quantal/amd64/redis-server/filelist
class redis(
$redis_port = '6379',
$redis_bind = '127.0.0.1',
$redis_password = undef,
$redis_max_memory = '1gb',
$redis_bind = '127.0.0.1',
$redis_max_memory = '1gb',
$redis_max_memory_policy = 'allkeys-lru',
$version = '2.2.12',
$redis_password = undef,
$redis_port = '6379',
$version = '2.2.12',
) {
package {'redis-server':