Explorar o código

Add parameter create_home for FTP accounts (to create or not home directory)

Emmanuel Bouthenot %!s(int64=4) %!d(string=hai) anos
pai
achega
3e8d030857
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      roles/ftpserver/tasks/pure-ftpd.yml

+ 1 - 1
roles/ftpserver/tasks/pure-ftpd.yml

@@ -95,7 +95,7 @@
     mode: 0755
     state: 'directory'
   with_items: '{{ ftp_accounts }}'
-  when: ftp_accounts|length > 0
+  when: ftp_accounts|length > 0 and (item.create_home is not defined or (item.create_home is defined and item.create_home))
   tags:
     - 'ftp'
     - 'pure-ftpd'