diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-16 16:41:12 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-16 16:41:12 -0300 |
commit | 99db24c24f9dae32a573b7d33eb8ed4feb3494b4 (patch) | |
tree | 766372c163c3eb941d8667bf5b964f7978ace5f2 /manifests/defines/ssh_local_key.pp | |
parent | 370995dda4c1becca5a88333ab3c3f2bb8490dfd (diff) | |
download | puppet-nodo-99db24c24f9dae32a573b7d33eb8ed4feb3494b4.tar.gz puppet-nodo-99db24c24f9dae32a573b7d33eb8ed4feb3494b4.tar.bz2 |
Variable fix
Diffstat (limited to 'manifests/defines/ssh_local_key.pp')
-rw-r--r-- | manifests/defines/ssh_local_key.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/defines/ssh_local_key.pp b/manifests/defines/ssh_local_key.pp index c997326..be6ccd8 100644 --- a/manifests/defines/ssh_local_key.pp +++ b/manifests/defines/ssh_local_key.pp @@ -2,7 +2,7 @@ define ssh_local_key( $owner = $name, $group = $name, - $home = '/home/$owner', + $home = "/home/${owner}", $source = "puppet:///modules/site_keys/${name}_id_rsa", $dest = 'id_rsa', $ensure = 'present', |