72 lines
1.5 KiB
YAML
72 lines
1.5 KiB
YAML
---
|
|
|
|
ansible_python_interpreter: /usr/bin/python3
|
|
|
|
|
|
# ---
|
|
# vars used by roles/common/tasks/basic.yml
|
|
# ---
|
|
|
|
set_default_limit_nofile: true
|
|
|
|
# ---
|
|
# vars used by roles/common/tasks/sshd.yml
|
|
# ---
|
|
|
|
sshd_max_auth_tries: 6
|
|
|
|
sshd_permit_root_login: !!str "yes"
|
|
|
|
sshd_password_authentication: !!str "yes"
|
|
|
|
sshd_use_pam: !!str "no"
|
|
|
|
sshd_print_motd: !!str "yes"
|
|
|
|
# ==========
|
|
# vars used by roles/common/tasks/nfs.yml
|
|
# ==========
|
|
|
|
nfs_server: 192.168.82.20
|
|
|
|
# Set 'fs_encrypted' to true if filesystem lives on an encrypted
|
|
# partition.
|
|
# partition.
|
|
#
|
|
# NOTE !!
|
|
# Take car to increase 'fsid' in case of more than one export
|
|
#
|
|
nfs_exports:
|
|
- src: 192.168.82.20:/data/home
|
|
path: /data/home
|
|
mount_opts: user,exec,rsize=8192,wsize=8192,hard,intr
|
|
export_opt: rw,fsid=0,root_squash,sync,subtree_check
|
|
export_networks:
|
|
- 192.168.82.0/24
|
|
- 10.0.82.0/24
|
|
- 10.1.82.0/24
|
|
- 192.168.63.0/24
|
|
fs_encrypted: false
|
|
|
|
- src: 192.168.82.20:/data/samba
|
|
path: /data/samba
|
|
mount_opts: user,exec,rsize=8192,wsize=8192,hard,intr
|
|
export_opt: rw,fsid=1,root_squash,sync,subtree_check
|
|
export_networks:
|
|
- 192.168.82.0/24
|
|
- 10.0.82.0/24
|
|
- 10.1.82.0/24
|
|
- 192.168.63.0/24
|
|
fs_encrypted: false
|
|
|
|
# ==========
|
|
# vars used by roles/common/tasks/nis-install-server.yml
|
|
# vars used by roles/common/tasks/nis-user.yml
|
|
# vars used by roles/common/tasks/nis-install-client.yml
|
|
# ==========
|
|
|
|
# also used by template
|
|
# - yp.conf.j2
|
|
nis_server_address: 192.168.82.20
|
|
|