From fd8b21222b969e779d10cb5d49e2e10f717b8358 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis-Philippe=20V=C3=A9ronneau?= Date: Thu, 22 Dec 2016 22:26:43 -0500 Subject: make sure every object ends with either a comma or a semicolon --- manifests/config.pp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'manifests/config.pp') diff --git a/manifests/config.pp b/manifests/config.pp index 416aabc..4c5c5d3 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 @@ -34,7 +34,7 @@ class apt::config inherits apt { ::apt::apt_conf { '02show_upgraded': source => [ "puppet:///modules/site_apt/${::fqdn}/02show_upgraded", 'puppet:///modules/site_apt/02show_upgraded', - 'puppet:///modules/apt/02show_upgraded' ] + 'puppet:///modules/apt/02show_upgraded' ]; } if ( $::virtual == 'vserver' ) { @@ -49,7 +49,7 @@ class apt::config inherits apt { ::apt::apt_conf { '03clean': source => [ "puppet:///modules/site_apt/${::fqdn}/03clean", 'puppet:///modules/site_apt/03clean', - 'puppet:///modules/apt/03clean' ] + 'puppet:///modules/apt/03clean' ]; } } @@ -82,7 +82,7 @@ class apt::config inherits apt { } if $custom_preferences != false { Exec['custom_keys'] { - before => File['apt_config'] + before => File['apt_config']; } } } -- cgit v1.2.3