178 lines
3.2 KiB
YAML
178 lines
3.2 KiB
YAML
---
|
|
|
|
# tags supported inside basic.yml
|
|
#
|
|
# timezone
|
|
# locales
|
|
# systemd-nofiles
|
|
- import_tasks: basic.yml
|
|
tags:
|
|
- basic
|
|
|
|
|
|
# tags supported inside sshd.yml
|
|
#
|
|
# sshd-config
|
|
- import_tasks: sshd.yml
|
|
tags: sshd
|
|
|
|
|
|
# tags supported inside apt.yml
|
|
#
|
|
# apt-update
|
|
# apt-upgrade
|
|
# apt-dpkg-configure
|
|
# apt-initial-install
|
|
# apt-microcode
|
|
# apt-remove
|
|
# apt-autoremove
|
|
# apt-clean
|
|
- import_tasks: apt.yml
|
|
tags: apt
|
|
|
|
|
|
# tags supportetd inside git.yml
|
|
#
|
|
# git-default-repositories
|
|
# git-file-server-repositories
|
|
# git-gateway-server-repositories
|
|
- import_tasks: git.yml
|
|
tags: git
|
|
|
|
|
|
# tags supported inside ntp.yml:
|
|
#
|
|
# ntp-server
|
|
- import_tasks: ntp.yml
|
|
tags:
|
|
- ntp
|
|
|
|
# tags supported inside cups-install.yml:
|
|
#
|
|
# cups-server
|
|
# cups-client
|
|
- import_tasks: cups-install.yml
|
|
tags:
|
|
- cups
|
|
|
|
# tags supported inside cups-install.yml:
|
|
#
|
|
- import_tasks: pure-ftpd-install.yml
|
|
when:
|
|
- groups['ftp_server']|string is search(inventory_hostname)
|
|
tags:
|
|
- pure-ftpd
|
|
|
|
# tags supported inside nfs.yml:
|
|
#
|
|
# nfs-server
|
|
# nfs-client
|
|
- import_tasks: nfs.yml
|
|
tags:
|
|
- nfs
|
|
|
|
|
|
# tags supported inside samba-install.yml:
|
|
#
|
|
# samba-server
|
|
# samba-client
|
|
- import_tasks: samba-install.yml
|
|
tags:
|
|
- samba
|
|
|
|
|
|
# tags supported inside user.yml:
|
|
#
|
|
# system-user
|
|
- import_tasks: user.yml
|
|
when: "groups['file_server']|string is search(inventory_hostname)"
|
|
tags:
|
|
- system-user
|
|
|
|
|
|
# tags supported inside :nis-install-server.yml
|
|
#
|
|
# nis-install-server
|
|
- import_tasks: nis-install-server.yml
|
|
when: "groups['nis_server']|string is search(inventory_hostname)"
|
|
tags:
|
|
- nis-install
|
|
- nis-install-server
|
|
|
|
|
|
# tags supported inside nis-user.yml:
|
|
#
|
|
# system-user
|
|
- import_tasks: nis-user.yml
|
|
when: "groups['nis_server']|string is search(inventory_hostname)"
|
|
tags:
|
|
- nis-user
|
|
|
|
|
|
# tags supported inside nis-install-client.yml:
|
|
#
|
|
# nis-install-client
|
|
- import_tasks: nis-install-client.yml
|
|
when: "groups['nis_client']|string is search(inventory_hostname)"
|
|
tags:
|
|
- nis-install
|
|
- nis-install-client
|
|
|
|
|
|
# tags supported inside samba-user.yml:
|
|
#
|
|
# samba-user
|
|
- import_tasks: samba-user.yml
|
|
when: "groups['samba_server']|string is search(inventory_hostname)"
|
|
tags:
|
|
- nis-samba-user
|
|
|
|
# tags supported inside mount_samba_shares.yml:
|
|
#
|
|
- import_tasks: mount_samba_shares.yml
|
|
when: "groups['client_pc']|string is search(inventory_hostname)"
|
|
tags:
|
|
- samba-shares
|
|
|
|
|
|
# tags supported system-user-systemfiles.yml:
|
|
|
|
# profile
|
|
# bashrc
|
|
# vimrc
|
|
- import_tasks: system-user-systemfiles.yml
|
|
when: "groups['file_server']|string is search(inventory_hostname)"
|
|
tags:
|
|
- user-systemfiles
|
|
|
|
|
|
# tags supported nis-user-systemfiles.yml:
|
|
|
|
# profile
|
|
# bashrc
|
|
# vimrc
|
|
- import_tasks: nis-user-systemfiles.yml
|
|
when: "groups['nis_server']|string is search(inventory_hostname)"
|
|
tags:
|
|
- user-systemfiles
|
|
|
|
|
|
# tags supported root_files_scripts.yml:
|
|
|
|
# wakeup_lan
|
|
- import_tasks: root_files_scripts.yml
|
|
tags:
|
|
- root-files-scripts
|
|
|
|
|
|
# tags supported inside sudoers.yml:
|
|
#
|
|
# sudoers-remove
|
|
# sudoers-file-configuration
|
|
# sudoers-global-configuration
|
|
- import_tasks: sudoers.yml
|
|
when: "groups['client_pc']|string is search(inventory_hostname)"
|
|
tags:
|
|
- sudoers
|
|
|