]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blobdiff - modules/base_installation/manifests/ssh.pp
Fix package dependencies for base installation
[perso/Immae/Projets/Puppet.git] / modules / base_installation / manifests / ssh.pp
index 43769e9a5454bfb52bd5531a5b72cd815d76c60f..d6317d5b7cf0a79f2bcab6cc59494c694eb19fec 100644 (file)
@@ -1,13 +1,14 @@
 class base_installation::ssh inherits base_installation {
   class { 'ssh::server':
      storeconfigs_enabled => false,
-     options => {
+     options              => {
         'AcceptEnv'                       => undef,
         'X11Forwarding'                   => 'yes',
         'PrintMotd'                       => 'no',
         'ChallengeResponseAuthentication' => 'no',
         'Subsystem'                       => 'sftp /usr/lib/openssh/sftp-server',
-     }
+     },
+     require              => Package["openssh"]
   }
 
   contain "ssh::server"