From 95c0eb47b24e1594d60ab5676edce0b2ce7330b3 Mon Sep 17 00:00:00 2001 From: Carlos Camacho Date: Thu, 20 Jul 2017 20:44:15 +0200 Subject: [PATCH] Fix lint issues to upgrade to puppet-lint 2.3 2017-07-20 14:46:22.341413 | manifests/init.pp:204:WARNING: arrow should be on the right operand's line 2017-07-20 14:46:22.341547 | manifests/init.pp:205:WARNING: arrow should be on the right operand's line Change-Id: I26779b1c3d6095552bcbc130b363a4013b7b568f --- manifests/init.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index cb2027f..a720008 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -201,8 +201,8 @@ class qdr( include ::qdr::config include ::qdr::service - Class['::qdr::install'] -> - Class['::qdr::config'] -> - Class['::qdr::service'] + Class['::qdr::install'] + -> Class['::qdr::config'] + -> Class['::qdr::service'] }