]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - modules/vsftpd/manifests/nolisten.pp
more ordering
[dsa-puppet.git] / modules / vsftpd / manifests / nolisten.pp
index c2e5d079a9fe58cf89d494b8c4eaaa9ad5ea4ec5..5d7a23dcce411e4ec8db6628c4a9e68bff71db70 100644 (file)
@@ -1,13 +1,15 @@
-class vsftpd::nolisten {
+class vsftpd::nolisten inherits vsftpd {
 
        Service['vsftpd'] {
                ensure => stopped,
                noop   => true,
        }
 
+       Service['vsftpd']->Service['xinetd']
+
        file { '/etc/vsftpd.conf':
                noop    => true,
-               content => 'listen=NO'
+               content => 'listen=NO',
                notify  => Service['vsftpd']
        }
 }