From 9f676ae3a96b7ebdf4302368bca9771142e1dbb7 Mon Sep 17 00:00:00 2001 From: Andrey Nikitin Date: Mon, 21 Mar 2016 11:24:37 +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: I1a46fea86c378127fd2f50af49758a8f2007381b --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index 789819d..96907e5 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -15,8 +15,8 @@ # == Class: diskimage_builder # class diskimage_builder ( - $use_git = false, $git_source_repo = 'git+https://git.openstack.org/openstack/diskimage-builder', + $use_git = false, ) { include ::pip include ::apt