From bb04bb1cc683e6acba49e198592ae248f5c95935 Mon Sep 17 00:00:00 2001 From: Adam Henry Lewenberg <adamhl@stanford.edu> Date: Thu, 5 Nov 2015 13:02:34 -0800 Subject: [PATCH] fix incorrect template content line --- manifests/ssh/pam.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/ssh/pam.pp b/manifests/ssh/pam.pp index 88d85dd..a74f488 100644 --- a/manifests/ssh/pam.pp +++ b/manifests/ssh/pam.pp @@ -19,7 +19,7 @@ class ssh::pam ( if ($::osfamily =~ /Debian/) { file {'/etc/pam.d/sshd': ensure => present, - source => template('base/ssh/etc/pam.d/sshd.erb'), + content => template('base/ssh/etc/pam.d/sshd.erb'), } } else { fail("cannot call ssh::pam with pam_duo true under OS '$::osfamily'") -- GitLab