diff options
author | Antoine Beaupré <anarcat@koumbit.org> | 2015-06-18 15:59:16 -0400 |
---|---|---|
committer | Antoine Beaupré <anarcat@koumbit.org> | 2015-06-18 17:11:21 -0400 |
commit | baf0a425d25294f2d218419cfd8e77be56168a95 (patch) | |
tree | 8b43cef2621cb9f32ab8aa00924934387998a6c5 /manifests | |
parent | 72b4eadc2db6ed72625f3322f466d21c556ef69b (diff) | |
download | puppet-sshd-baf0a425d25294f2d218419cfd8e77be56168a95.tar.gz puppet-sshd-baf0a425d25294f2d218419cfd8e77be56168a95.tar.bz2 |
remove traces of isuma vendor
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/autossh.pp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/manifests/autossh.pp b/manifests/autossh.pp index 80d571b..e94d65b 100644 --- a/manifests/autossh.pp +++ b/manifests/autossh.pp @@ -23,12 +23,16 @@ class sshd::autossh($host, mode => '0444', content => "DAEMON_OPTS='-o ServerAliveInterval=15 -o ServerAliveCountMax=4 -q -N -R $port_ensure:localhost:22 $user_ensure@$host'\n"; } + package { 'autossh': + ensure => present, + } service { 'autossh': ensure => running, enable => true, subscribe => [ - File['/etc/init.d/autossh'], - File['/etc/default/autossh'] - ], + File['/etc/init.d/autossh'], + File['/etc/default/autossh'], + Package['autossh'], + ], } } |