111 lines
2.1 KiB
YAML
111 lines
2.1 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-compiler-pkgs
|
|
# apt-webserver-pkgs
|
|
# apt-lxc-hosts-pkgs
|
|
# apt-mysql-server-pkgs
|
|
# apt-postgresql-server-pkgs
|
|
# apt-remove
|
|
# apt-autoremove
|
|
# apt-clean
|
|
- import_tasks: apt.yml
|
|
tags: apt
|
|
|
|
|
|
# tags supported inside users.yml:
|
|
#
|
|
# users-exists
|
|
# groups-exists
|
|
# authorized_key
|
|
# sudo-users
|
|
# insert-ssh-keypair-backup-server
|
|
# keypair-backup-server
|
|
# root-defaut-ssh-keypair
|
|
# insert_root_ssh_public_key
|
|
- import_tasks: users.yml
|
|
tags: users
|
|
|
|
|
|
# tags supported inside users-systemfiles.yml:
|
|
#
|
|
# bash
|
|
# profile
|
|
# vim
|
|
- import_tasks: users-systemfiles.yml
|
|
tags: users-systemfiles
|
|
|
|
|
|
# tags supported inside users.yml:
|
|
#
|
|
# users-exists
|
|
# groups-exists
|
|
# authorized_key
|
|
# sudo-users
|
|
# webadmin-defaut-ssh-keypair
|
|
# insert_webadmin_ssh_public_key
|
|
- import_tasks: webadmin-user.yml
|
|
when: groups['webadmin']|string is search(inventory_hostname)
|
|
tags:
|
|
- users
|
|
- users-systemfiles
|
|
- webadmin
|
|
|
|
|
|
# tags supported inside sudoers.yml:
|
|
#
|
|
# sudoers-remove
|
|
# sudoers-file-configuration
|
|
# sudoers-global-configuration
|
|
- import_tasks: sudoers.yml
|
|
tags: sudoers
|
|
|
|
|
|
# tags supportetd inside git.yml
|
|
#
|
|
# git-default-repositories
|
|
# git-lxc-guest-repositories
|
|
# git-apache2-repositories
|
|
# git-nginx-repositories
|
|
# git-mysql-server-repositories
|
|
# git-nextcloud-server-repositories
|
|
# git-postgresql-server-repositories
|
|
# git-dns-server-repositories
|
|
# git-backup-server-repositories
|
|
# git-mailservers-repositories
|
|
# git-sympa-repositories
|
|
# git-other-repositories
|
|
- import_tasks: git.yml
|
|
tags: git
|
|
|
|
# tags supportetd inside caching-nameserver.yml
|
|
#
|
|
# apt-caching-nameserver
|
|
- import_tasks: caching-nameserver.yml
|
|
when: groups['caching_nameserver']|string is search(inventory_hostname)
|
|
tags: caching-nameserver
|
|
|