]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/vsftpd/manifests/nolisten.pp
drop a bunch of noops
[dsa-puppet.git] / modules / vsftpd / manifests / nolisten.pp
1 class vsftpd::nolisten inherits vsftpd {
2
3         Service['vsftpd'] {
4                 ensure => stopped,
5         }
6
7         Service['vsftpd']->Service['xinetd']
8
9         file { '/etc/vsftpd.conf':
10                 content => "listen=NO\n",
11                 notify  => Service['vsftpd']
12         }
13 }