40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
---
|
|
- name: Cloud-init configuration
|
|
ansible.builtin.import_tasks: cloud_init.yml
|
|
|
|
- name: SSH daemon configuration
|
|
ansible.builtin.import_tasks: sshd_config.yml
|
|
when: sshd_install_config
|
|
|
|
- name: Message of the Day (MOTD) configuration
|
|
ansible.builtin.import_tasks: motd.yml
|
|
when: motd_setup
|
|
|
|
- name: Fail2ban configuration
|
|
ansible.builtin.import_tasks: fail2ban.yml
|
|
when: fail2ban_enabled
|
|
|
|
- name: Tuned service for EL/RedHat
|
|
ansible.builtin.import_tasks: tuned_el.yml
|
|
when: ansible_distribution_file_variety == "RedHat"
|
|
|
|
- name: Manage the autofs configuration
|
|
ansible.builtin.import_tasks: autofs.yml
|
|
when: autofs_client_mountpoint
|
|
|
|
- name: Manage tmpreaper
|
|
ansible.builtin.import_tasks: tmpreaper.yml
|
|
|
|
- name: Ganesha NFS
|
|
ansible.builtin.import_tasks: ganesha-nfs.yml
|
|
when: nfs_server_ganesha_enabled
|
|
|
|
- name: Linux Kernel NFS server
|
|
ansible.builtin.import_tasks: nfs-kernel-server.yml
|
|
when:
|
|
- nfs_server_enabled
|
|
- not nfs_server_ganesha_enabled
|
|
|
|
- name: Custom bashrc settings
|
|
ansible.builtin.import_tasks: custom_bashrc.yml
|