diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-16 16:51:27 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-16 16:51:27 -0300 |
commit | 5055135b544026487c79d3cc71cfebf94c1fd994 (patch) | |
tree | 446619c88d3f49367f9afc4cd4d6e6efbb2a34a0 /manifests/defines/ssh_config.pp | |
parent | 99db24c24f9dae32a573b7d33eb8ed4feb3494b4 (diff) | |
download | puppet-nodo-5055135b544026487c79d3cc71cfebf94c1fd994.tar.gz puppet-nodo-5055135b544026487c79d3cc71cfebf94c1fd994.tar.bz2 |
Defining nodo::subsystem::ssh_folder as a parametrized class
Diffstat (limited to 'manifests/defines/ssh_config.pp')
-rw-r--r-- | manifests/defines/ssh_config.pp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/manifests/defines/ssh_config.pp b/manifests/defines/ssh_config.pp index 79d9635..d071822 100644 --- a/manifests/defines/ssh_config.pp +++ b/manifests/defines/ssh_config.pp @@ -1,10 +1,15 @@ # Manage ssh config for a particular user define ssh_config( $owner, + $group, $home = '/home/$owner', $ssh_localhost_auth = false ) { - include nodo::subsystem::ssh_folder + class { "nodo::subsystem::ssh_folder": + home => $home, + owner => $owner, + group => $group, + } file { "${home}/.ssh/config": ensure => present, |