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:
parent
b0bba476c3
commit
036ea2c163
@ -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':
|
||||
|
Loading…
x
Reference in New Issue
Block a user