diff options
Diffstat (limited to 'manifests/config.pp')
-rw-r--r-- | manifests/config.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/config.pp b/manifests/config.pp index 4c5c5d3..881a091 100644 --- a/manifests/config.pp +++ b/manifests/config.pp @@ -10,7 +10,7 @@ class apt::config inherits apt { $sources_content = $custom_sources_list ? { '' => template( "apt/${::operatingsystem}/sources.list.erb"), - default => $custom_sources_list; + default => $custom_sources_list, } file { # include main and security @@ -82,7 +82,7 @@ class apt::config inherits apt { } if $custom_preferences != false { Exec['custom_keys'] { - before => File['apt_config']; + before => File['apt_config'], } } } |