update..
This commit is contained in:
@ -883,6 +883,181 @@ nfs_server: {}
|
||||
nfs_exports: []
|
||||
|
||||
|
||||
# ==========
|
||||
# vars used by roles/common/tasks/pure-ftpd-install.yml
|
||||
# ==========
|
||||
|
||||
pureftpd_global_config_file: /etc/default/pure-ftpd-common
|
||||
|
||||
pureftpd_config_dir: /etc/pure-ftpd
|
||||
pureftpd_config_conf_dir: "{{ pureftpd_config_dir }}/conf"
|
||||
pureftpd_config_auth_dir: "{{ pureftpd_config_dir }}/auth"
|
||||
pureftpd_config_db_dir: "{{ pureftpd_config_dir }}/db"
|
||||
|
||||
pureftpd_config_fortune_file: "{{ pureftpd_config_dir }}/pureftpd-fortune.txt"
|
||||
|
||||
pureftpd_tls_certificate_pem: /etc/ssl/private/pure-ftpd.pem
|
||||
|
||||
pureftpd_packages:
|
||||
- pure-ftpd-common
|
||||
- pure-ftpd
|
||||
|
||||
# pure-ftpd-common.j2
|
||||
pureftpd_global_config_mode: standalone
|
||||
pureftpd_global_config_virtualchroot: false
|
||||
pureftpd_global_config_uploadscript: ''
|
||||
pureftpd_global_config_uploaduid: ''
|
||||
pureftpd_global_config_uploadgid: ''
|
||||
|
||||
pureftpd_config:
|
||||
AltLog: 'clf:/var/log/pure-ftpd/transfer.log'
|
||||
AnonymousCantUpload: 'yes'
|
||||
Bind: ',21'
|
||||
CustomerProof: 'yes'
|
||||
DisplayDotFiles: 'yes'
|
||||
DontResolve: 'yes'
|
||||
FSCharset: 'UTF-8'
|
||||
ForcePassiveIP: ''
|
||||
MaxDiskUsage: '80'
|
||||
MinUID: '1000'
|
||||
NoAnonymous: 'yes'
|
||||
PAMAuthentication: 'no'
|
||||
PassivePortRange: '50000 50400'
|
||||
ProhibitDotFilesRead: 'no'
|
||||
ProhibitDotFilesWrite: 'yes'
|
||||
PureDB: '/etc/pure-ftpd/pureftpd.pdb'
|
||||
SyslogFacility: 'ftp'
|
||||
TLS: '1'
|
||||
TLSCipherSuite: 'HIGH'
|
||||
UnixAuthentication: 'no'
|
||||
#
|
||||
# Available properties
|
||||
#
|
||||
# Available properties
|
||||
# AllowAnonymousFXP: 'no'
|
||||
# AllowUserFXP: 'no'
|
||||
# AltLog: 'clf:/var/log/pure-ftpd/transfer.log'
|
||||
# AnonymousBandwidth: '8'
|
||||
# AnonymousCanCreateDirs: 'no'
|
||||
# AnonymousCantUpload: 'yes'
|
||||
# AnonymousOnly: 'no'
|
||||
# AnonymousRatio: '1 10'
|
||||
# AntiWarez: 'yes'
|
||||
# AutoRename: 'no'
|
||||
# Bind: '127.0.0.1,21'
|
||||
# BrokenClientsCompatibility: 'no'
|
||||
# CallUploadScript: 'yes'
|
||||
# ChrootEveryone: 'yes'
|
||||
# ClientCharset: 'UTF-8'
|
||||
# CreateHomeDir: 'yes'
|
||||
# CustomerProof: 'yes'
|
||||
# Daemonize: 'yes'
|
||||
# DisplayDotFiles: 'yes'
|
||||
# DontResolve: 'yes'
|
||||
# ExtAuth: /var/run/ftpd.sock
|
||||
# ForcePassiveIP: '192.168.0.1'
|
||||
# FortunesFile: '/etc/pure-ftpd/cookie'
|
||||
# FSCharset: 'utf8'
|
||||
# IPV4Only: 'yes'
|
||||
# IPV6Only: 'yes'
|
||||
# KeepAllFiles: 'yes'
|
||||
# LDAPConfigFile: /etc/pureftpd-ldap.conf
|
||||
# LimitRecursion: '10000 8'
|
||||
# LogPID: 'yes'
|
||||
# MaxClientsNumber: '10'
|
||||
# MaxClientsPerIP: "{{ ansible_processor_cores }}"
|
||||
# MaxDiskUsage: '80'
|
||||
# MaxIdleTime: '15'
|
||||
# MaxLoad: '4'
|
||||
# MinUID: '1000'
|
||||
# MySQLConfigFile: /etc/pure-ftpd/mysql.conf
|
||||
# NoAnonymous: 'yes'
|
||||
# NoChmod: 'yes'
|
||||
# NoRename: 'yes'
|
||||
# NoTruncate: 'yes'
|
||||
# PAMAuthentication: 'no'
|
||||
# PassivePortRange: '30000 50000'
|
||||
# PerUserLimits: '3 20'
|
||||
# PGSQLConfigFile: /etc/pureftpd-pgsql.conf
|
||||
# PIDFile: '/var/run/pure-ftpd.pid'
|
||||
# ProhibitDotFilesRead: 'yes'
|
||||
# ProhibitDotFilesWrite: 'yes'
|
||||
# PureDB: /etc/pure-ftpd/pureftpd.pdb
|
||||
# Quota: '1000 10'
|
||||
# SyslogFacility: 'ftp'
|
||||
# TLS: '0'
|
||||
# TLSCipherSuite: 'ALL:!aNULL:!SSLv3'
|
||||
# TrustedIP: '10.1.1.1'
|
||||
# Umask: '113 002'
|
||||
# UnixAuthentication: 'no'
|
||||
# UserBandwidth: '8'
|
||||
# UserRatio: '1 10'
|
||||
# VerboseLog: 'no'
|
||||
|
||||
pureftpd_auth_puredb: 50
|
||||
pureftpd_auth_mysql: 0
|
||||
pureftpd_auth_postgresql: 0
|
||||
pureftpd_auth_ldap: 0
|
||||
pureftpd_auth_unix: 65
|
||||
pureftpd_auth_pam: 70
|
||||
|
||||
# Default FTP user/group
|
||||
pureftpd_virtual_users_group: nobody
|
||||
pureftpd_virtual_users_user: nogroup
|
||||
# pureftpd_virtual_users_gid: '65534'
|
||||
# pureftpd_virtual_users_uid: '65534'
|
||||
|
||||
|
||||
#pureftpd_virtual_users:
|
||||
#
|
||||
# Available properties
|
||||
# - name: vuser1
|
||||
# password: p4ssW0rd
|
||||
# homedir: /var/ftp/vuser1
|
||||
# uid: 2000
|
||||
# gid: 2000
|
||||
# quota_files: 2000
|
||||
# quota_size: 500
|
||||
# bandwidth_ul: 5
|
||||
# bandwidth_dl: 5
|
||||
# ratio_ul: 10
|
||||
# ratio_dl: 1
|
||||
pureftpd_virtual_users: []
|
||||
|
||||
#pureftpd_virtual_deleted_users:
|
||||
#
|
||||
# Available properties
|
||||
# - name: vuser2
|
||||
pureftpd_virtual_deleted_users: []
|
||||
|
||||
pureftpd_virtual_users_import: false
|
||||
|
||||
# pureftpd_tls_certificate_method
|
||||
#
|
||||
# possible values:
|
||||
# - generate
|
||||
# - certbot - Not YET integrated
|
||||
# - upload - Not YET integrated
|
||||
#
|
||||
pureftpd_tls_certificate_method: 'generate'
|
||||
|
||||
# for method 'generate'
|
||||
#
|
||||
# # Available properties
|
||||
#
|
||||
#pureftpd_tls_certificate_openssl:
|
||||
# size: 4096
|
||||
# days: 365
|
||||
# fqdn: ftp.example.com
|
||||
# country: 'DE'
|
||||
# state: 'Berlin'
|
||||
# locality: 'Berlin'
|
||||
# organization: 'O.OPEN'
|
||||
# unit: 'Network services'
|
||||
#
|
||||
pureftpd_tls_certificate_openssl: []
|
||||
|
||||
|
||||
|
||||
# ==========
|
||||
# vars used by roles/common/tasks/system-user.yml
|
||||
@ -907,8 +1082,6 @@ system_users: []
|
||||
|
||||
system_groups: []
|
||||
|
||||
base_home: /home
|
||||
|
||||
|
||||
# ==========
|
||||
# vars used by roles/common/tasks/nis-install-server.yml
|
||||
@ -979,20 +1152,69 @@ nis_user: []
|
||||
|
||||
# ==========
|
||||
# vars used by roles/common/tasks/samba-install.yml
|
||||
# vars used by roles/common/tasks/samba-user.yml
|
||||
# vars used by roles/common/tasks/mount_samba_shares.yml
|
||||
# ==========
|
||||
|
||||
apt_install_server_samba:
|
||||
- samba
|
||||
- nscd
|
||||
|
||||
# - winbind
|
||||
|
||||
apt_install_client_samba:
|
||||
- samba-client
|
||||
- samba-common
|
||||
# samba_workgroup
|
||||
#
|
||||
# example:
|
||||
# samba_workgroup: MBR
|
||||
#
|
||||
samba_workgroup: {}
|
||||
|
||||
#samba_server: file-spr.sprachenatelier.netz
|
||||
samba_server: []
|
||||
# samba_netbios_name
|
||||
#
|
||||
# example:
|
||||
# samba_netbios_name: FILE-MBR
|
||||
#
|
||||
samba_netbios_name: {}
|
||||
|
||||
# samba_server_min_protocol
|
||||
#
|
||||
samba_server_min_protocol: {}
|
||||
|
||||
samba_groups: []
|
||||
|
||||
# samba_user:
|
||||
# - name: chris
|
||||
# groups:
|
||||
# - group1
|
||||
# - group2
|
||||
# password: 'H-.T/TvN5S9J'
|
||||
#
|
||||
samba_user: []
|
||||
|
||||
# remove_samba_users:
|
||||
# - name: name1
|
||||
# - name: name2
|
||||
#
|
||||
remove_samba_users: []
|
||||
|
||||
# samba_shares
|
||||
#
|
||||
# samba_shares:
|
||||
# - name: Arbeitsrechtliches
|
||||
# comment:
|
||||
# path: /data/shares/Arbeitsrechtliches
|
||||
# browseable: !!str yes
|
||||
# read_only: !!str no
|
||||
# writeable: !!str yes
|
||||
# guest_ok: !!str no
|
||||
# file_create_mask: !!str 0660
|
||||
# dir_create_mask: !!str 2770
|
||||
# valid_users: '%S'
|
||||
# group_valid_users: mbr-finanzen
|
||||
# group_write_list: mbr-finanzen
|
||||
# vfs_object_recycle: true
|
||||
# recycle_path: '@Recycle.Bin'
|
||||
#
|
||||
samba_shares: []
|
||||
|
||||
samba_cronjob_trash_dirs:
|
||||
name: Clean up Samba Trash Dirs
|
||||
@ -1038,27 +1260,6 @@ samba_cronjob_permissions:
|
||||
#
|
||||
# - nis_user: roles/common/tasks/nis-install-server.yml
|
||||
|
||||
samba_workgroup: SPR
|
||||
samba_netbios_name: FILE-SPR
|
||||
|
||||
# samba_shares:
|
||||
# - name: Arbeitsrechtliches
|
||||
# comment:
|
||||
# path: /data/shares/Arbeitsrechtliches
|
||||
# browseable: !!str yes
|
||||
# read_only: !!str no
|
||||
# writeable: !!str yes
|
||||
# guest_ok: !!str no
|
||||
# file_create_mask: !!str 0660
|
||||
# dir_create_mask: !!str 2770
|
||||
# valid_users: '%S'
|
||||
# group_valid_users: mbr-finanzen
|
||||
# group_write_list: mbr-finanzen
|
||||
# vfs_object_recycle: true
|
||||
# recycle_path: '@Recycle.Bin'
|
||||
#
|
||||
samba_shares: []
|
||||
|
||||
|
||||
# ==========
|
||||
# vars used by roles/common/tasks/system-user-systemfiles.yml
|
||||
|
Reference in New Issue
Block a user