From 63ef1497e285c841b52395481bf1df54ab315a1b Mon Sep 17 00:00:00 2001 From: Andrey Nikitin Date: Mon, 21 Mar 2016 18:07:49 +0300 Subject: [PATCH] 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: I1c319006878007d9d93a201a40c70843fa1bcf21 --- manifests/init.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index fb7e870..4c6d649 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -1,10 +1,10 @@ # Class: pip # class pip ( - $index_url = 'https://pypi.python.org/simple', - $trusted_hosts = [], - $manage_pip_conf = false, + $index_url = 'https://pypi.python.org/simple', + $manage_pip_conf = false, $optional_settings = {}, + $trusted_hosts = [], ) { include ::pip::params validate_array($trusted_hosts)