From ef6036e879f894697a03459501a994af930dc4f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis-Philippe=20V=C3=A9ronneau?= Date: Thu, 22 Dec 2016 21:37:05 -0500 Subject: harmonize variable alignment --- manifests/sources_list.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manifests/sources_list.pp') diff --git a/manifests/sources_list.pp b/manifests/sources_list.pp index 6ff4fc3..22bc110 100644 --- a/manifests/sources_list.pp +++ b/manifests/sources_list.pp @@ -2,7 +2,7 @@ define apt::sources_list ( $ensure = 'present', $source = undef, - $content = undef + $content = undef, ) { if $ensure == 'present' { -- cgit v1.2.3 From c4e6f42e1b629e98ddeeb7c9821f1266f7295685 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis-Philippe=20V=C3=A9ronneau?= Date: Thu, 22 Dec 2016 21:46:37 -0500 Subject: fix missing/superfluous newline at the end/beginning of files --- manifests/sources_list.pp | 1 + 1 file changed, 1 insertion(+) (limited to 'manifests/sources_list.pp') diff --git a/manifests/sources_list.pp b/manifests/sources_list.pp index 22bc110..2fc7111 100644 --- a/manifests/sources_list.pp +++ b/manifests/sources_list.pp @@ -1,4 +1,5 @@ # Configure an apt source + define apt::sources_list ( $ensure = 'present', $source = undef, -- cgit v1.2.3 From bdd6cf421143914cc2c0c63fa543013892fd3bed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis-Philippe=20V=C3=A9ronneau?= Date: Thu, 22 Dec 2016 22:17:35 -0500 Subject: use the same name for the update_apt exec everywhere --- manifests/sources_list.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manifests/sources_list.pp') diff --git a/manifests/sources_list.pp b/manifests/sources_list.pp index 2fc7111..35a7643 100644 --- a/manifests/sources_list.pp +++ b/manifests/sources_list.pp @@ -27,7 +27,7 @@ define apt::sources_list ( mode => '0644', owner => 'root', group => 0, - notify => Exec['apt_updated'], + notify => Exec['update_apt'], } if $source { -- cgit v1.2.3