]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/vsftpd/manifests/nolisten.pp
more ordering
[dsa-puppet.git] / modules / vsftpd / manifests / nolisten.pp
1 class vsftpd::nolisten inherits vsftpd {
2
3         Service['vsftpd'] {
4                 ensure => stopped,
5                 noop   => true,
6         }
7
8         Service['vsftpd']->Service['xinetd']
9
10         file { '/etc/vsftpd.conf':
11                 noop    => true,
12                 content => 'listen=NO',
13                 notify  => Service['vsftpd']
14         }
15 }