15 lines
601 B
YAML
15 lines
601 B
YAML
---
|
|
|
|
# fix python path errors
|
|
ansible_python_interpreter: "/usr/bin/env python"
|
|
|
|
# set group name with gid 0
|
|
ansible_wheel: "{% if ansible_os_family in [\"OpenBSD\"] %}wheel{% else %}root{% endif %}"
|
|
|
|
# mail settings
|
|
mail_server: mail.foo.sh
|
|
mail_domain: foo.sh
|
|
|
|
# tls protocols and ciphers
|
|
tls_protocols: TLSv1.2
|
|
tls_ciphers: ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256
|