From 2c56e06458d0308faf3746aff536558362d1082b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis-Philippe=20V=C3=A9ronneau?= Date: Thu, 22 Dec 2016 22:09:14 -0500 Subject: move parts of init.pp to config.pp^& install.pp to increase readability --- manifests/install.pp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 manifests/install.pp (limited to 'manifests/install.pp') diff --git a/manifests/install.pp b/manifests/install.pp new file mode 100644 index 0000000..5f33d11 --- /dev/null +++ b/manifests/install.pp @@ -0,0 +1,11 @@ +class apt::install { + + package { 'apt': + ensure => present, + } + + # This package should really always be current + package { 'debian-archive-keyring': + ensure => latest; + } +} -- cgit v1.2.3 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/install.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manifests/install.pp') diff --git a/manifests/install.pp b/manifests/install.pp index 5f33d11..76eb570 100644 --- a/manifests/install.pp +++ b/manifests/install.pp @@ -1,7 +1,7 @@ class apt::install { package { 'apt': - ensure => present, + ensure => present; } # This package should really always be current -- cgit v1.2.3