76 lines
1.9 KiB
YAML
76 lines
1.9 KiB
YAML
---
|
|
ftpuser: tixstream
|
|
ftppass: tixstream
|
|
# created with: mkpasswd --hash=md5
|
|
ftphash: $1$s2zr1Mjt$ie/OUvBVd85Eu3n0t8N17/
|
|
ftpgroup: tixstream
|
|
proftpd_ftp_port: 21
|
|
|
|
sftpuser: "{{ ftpuser }}"
|
|
sftppass: "{{ ftppass }}"
|
|
sftphash: "{{ ftphash }}"
|
|
sftpgroup: "{{ ftpgroup }}"
|
|
proftpd_sftp_port: 22
|
|
|
|
relay_ftp_user: fxftp
|
|
relay_ftp_password: verysecret
|
|
|
|
tixstream_express_job_manager_database_user: tixel
|
|
tixstream_express_job_manager_database_password: tixel
|
|
tixstream_express_job_manager_database_name: tixstream_express_job_manager
|
|
proftpd_txe_port: 10021
|
|
proftpd_virtual_host: 0.0.0.0
|
|
|
|
ftp_shares:
|
|
source:
|
|
name: ftp_source
|
|
protocol: "FTP"
|
|
host: "{{ current_host_config.proftpd_server_ip }}"
|
|
port: "{{ proftpd_ftp_port }}"
|
|
username: "{{ ftpuser }}"
|
|
password: "{{ ftppass }}"
|
|
directory: "src"
|
|
description: "Source FTP Share"
|
|
permissions: "2"
|
|
user_id: "1"
|
|
public: "true"
|
|
destination:
|
|
name: ftp_destination
|
|
protocol: "FTP"
|
|
host: "{{ current_host_config.proftpd_server_ip }}"
|
|
port: "{{ proftpd_ftp_port }}"
|
|
username: "{{ ftpuser }}"
|
|
password: "{{ ftppass }}"
|
|
directory: "dest"
|
|
description: "Destination FTP Share"
|
|
permissions: "6"
|
|
user_id: "1"
|
|
public: "true"
|
|
|
|
sftp_shares:
|
|
source:
|
|
name: sftp_source
|
|
protocol: "SFTP"
|
|
host: "{{ current_host_config.proftpd_server_ip }}"
|
|
port: "{{ proftpd_sftp_port }}"
|
|
username: "{{ sftpuser }}"
|
|
password: "{{ sftppass }}"
|
|
directory: "src"
|
|
description: "Source SFTP Share"
|
|
permissions: "2"
|
|
user_id: "1"
|
|
public: "true"
|
|
destination:
|
|
name: sftp_destination
|
|
protocol: "SFTP"
|
|
host: "{{ current_host_config.proftpd_server_ip }}"
|
|
port: "{{ proftpd_sftp_port }}"
|
|
username: "{{ sftpuser }}"
|
|
password: "{{ sftppass }}"
|
|
directory: "dest"
|
|
description: "Destination SFTP Share"
|
|
permissions: "6"
|
|
user_id: "1"
|
|
public: "true"
|
|
|
|
# vim:ft=ansible
|