]> git.donarmstrong.com Git - dsa-puppet.git/commitdiff
Ensure the /var/run/vsftpd/empty exists as vsftpd is broken without it
authorPaul Wise <pabs@debian.org>
Thu, 18 Jun 2015 06:01:16 +0000 (14:01 +0800)
committerPaul Wise <pabs@debian.org>
Thu, 18 Jun 2015 06:01:23 +0000 (14:01 +0800)
This is a workaround for vsftpd not including this file (#789127)

modules/vsftpd/manifests/init.pp

index 876e8654bbd94bfbf66a6ddf6952fa80f46d0b8c..0ad87bad2f95232cbf403d443ab0dc9953e9412d 100644 (file)
@@ -25,6 +25,11 @@ class vsftpd {
                notify => Exec['systemctl daemon-reload'],
        }
 
+       # Ensure the empty dir is present, workaround for #789127
+       file { '/etc/tmpfiles.d/vsftpd.conf':
+               content => 'd /var/run/vsftpd/empty 0755 root root -'
+               notify => Exec['systemd-tmpfiles --create --exclude-prefix=/dev'],
+       }
 
        munin::check { 'vsftpd':
                ensure => absent