Browse Source

common: Fix lint warnings

Sebastien Badia 8 years ago
parent
commit
35a244fdf3
1 changed files with 4 additions and 4 deletions
  1. 4 4
      manifests/common.pp

+ 4 - 4
manifests/common.pp

@@ -15,8 +15,8 @@ class public::common {
   class {'dnsclient':
     nameservers => hiera_array('nameservers', undef),
     options     => 'UNSET',
-    search      => hiera("domain"),
-    domain      => hiera("domain"),
+    search      => hiera('domain'),
+    domain      => hiera('domain'),
   }
 
   # TODO, apt-proxy
@@ -30,13 +30,13 @@ class public::common {
   # Setup timezone
   class {
     'timezone':
-      timezone    => hiera("timezone"),
+      timezone    => hiera('timezone'),
       autoupgrade => false;
   }
 
   class {'locales':
     default_locale => 'en_US.UTF-8',
-    locales        => hiera("locales")
+    locales        => hiera('locales')
   }
 
   ensure_packages(['tmux','screen','netcat','htop','rsync','host','dmraid',