pure-ftpd.yml 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. - name: 'Install pure-ftpd related packages'
  2. apt:
  3. pkg: '{{ item }}'
  4. state: 'installed'
  5. update_cache: 'yes'
  6. with_items:
  7. - 'pure-ftpd'
  8. - name: 'Install pure-ftpd configuration (TLS settings)'
  9. lineinfile:
  10. dest: '/etc/pure-ftpd/conf/{{ item.dest }}'
  11. regexp: '{{ item.regexp }}'
  12. line: '{{ item.line }}'
  13. create: yes
  14. with_items:
  15. - { dest: 'TLS', regexp: '^[0-9]+$', line: '3' }
  16. - { dest: 'TLSCipherSuite', regexp: '^.*$', line: 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!3DES:!MD5:!PSK:!SSLv3:!SSLv2:!TLSv1' }
  17. notify:
  18. - 'Restart pure-ftpd'
  19. when: with_ftp_tls
  20. - name: 'Create pure-ftpd SSL bundle certificate symlink'
  21. file:
  22. src: '/etc/ssl/local/certs/{{ ftp_tls_domain }}/bundle.pem'
  23. path: '/etc/ssl/private/pure-ftpd.pem'
  24. state: 'link'
  25. notify:
  26. - 'Restart pure-ftpd'
  27. when: with_ftp_tls and ftp_tls_domain
  28. - name: 'Create pure-ftpd Diffie Hellman Param file symlink'
  29. file:
  30. src: '/etc/ssl/private/dh2048.pem'
  31. path: '/etc/ssl/private/pure-ftpd-dhparams.pem'
  32. state: 'link'
  33. notify:
  34. - 'Restart pure-ftpd'
  35. when: with_ftp_tls
  36. - name: 'Install pure-ftpd configuration'
  37. lineinfile:
  38. dest: '/etc/pure-ftpd/conf/{{ item.dest }}'
  39. regexp: '{{ item.regexp }}'
  40. line: '{{ item.line }}'
  41. create: yes
  42. with_items:
  43. - { dest: 'BrokenClientsCompatibility', regexp: '^(yes|no)', line: 'yes' }
  44. - { dest: 'ChrootEveryone', regexp: '^(yes|no)', line: 'yes' }
  45. - { dest: 'DontResolve', regexp: '^(yes|no)', line: 'yes' }
  46. - { dest: 'NoAnonymous', regexp: '^(yes|no)', line: 'yes' }
  47. - { dest: 'NoChmod', regexp: '^(yes|no)', line: 'yes' }
  48. - { dest: 'PAMAuthentication', regexp: '^(yes|no)', line: 'yes' }
  49. - { dest: 'VerboseLog', regexp: '^(yes|no)', line: 'no' }
  50. - { dest: 'MinUID', regexp: '^[0-9]+$', line: '34' } # Debian's uid(backup) = 34
  51. - { dest: 'PassivePortRange', regexp: '^[0-9]+ [0-9]+$', line: '64000 65000' }
  52. notify:
  53. - 'Restart pure-ftpd'
  54. - name: 'Enable pure-ftpd internal DB'
  55. file:
  56. src: '/etc/pure-ftpd/conf/PureDB'
  57. path: '/etc/pure-ftpd/auth/80puredb'
  58. state: 'link'
  59. notify:
  60. - 'Restart pure-ftpd'
  61. - name: 'Clean up pure-ftpd internal DB'
  62. raw: pure-pw list 2>/dev/null | sed -r 's/^(\S+)\s.*$/\1/' | while read u ; do pure-pw userdel "${u}" ; done
  63. - name: 'Create FTP accounts home directory'
  64. file:
  65. path: '{{item.home}}'
  66. owner: '{{item.uid}}'
  67. group: '{{item.gid}}'
  68. mode: 0755
  69. state: 'directory'
  70. with_items: '{{ ftp_accounts }}'
  71. when: ftp_accounts
  72. - name: 'Add FTP accounts in pure-ftpd'
  73. raw: printf "{{item.password}}\n{{item.password}}\n" | pure-pw useradd "{{item.user}}" -d "{{item.home}}" -u "{{item.uid}}" -g "{{item.gid}}"
  74. with_items: '{{ ftp_accounts }}'
  75. when: ftp_accounts and with_ftp
  76. - name: 'Rebuild pure-ftpd internal DB'
  77. raw: pure-pw mkdb 2>/dev/null
  78. - name: 'Ensure pure-ftpd is running'
  79. service:
  80. name: 'pure-ftpd'
  81. state: 'started'