Ansible_workstation/Choux.yml

51 lines
1.3 KiB
YAML
Raw Normal View History

2018-08-22 18:42:52 +00:00
---
- hosts: localhost
connection: local
vars_files:
- vars/common.yml
2019-12-14 15:48:53 +00:00
- vars/users.yml
2019-11-13 11:48:15 +00:00
#- vars/home.yml
2018-08-24 09:24:15 +00:00
- vars/Choux.yml
2018-08-22 18:42:52 +00:00
2018-08-22 18:59:00 +00:00
tasks:
2018-12-17 07:47:56 +00:00
# - include: tasks/test.yml
- include: tasks/ansible.yml
2019-04-16 08:42:55 +00:00
- include: tasks/arch_aur.yml
- include: tasks/pacman_cache_server.yml
2018-08-23 12:35:40 +00:00
- include: tasks/arch_CLI_packages.yml
2019-03-05 17:28:27 +00:00
- include: tasks/prompt.yml
2020-01-02 18:08:39 +00:00
# - include: tasks/users.yml
2018-08-22 19:14:04 +00:00
- include: tasks/sudo.yml
2018-08-24 08:04:31 +00:00
- include: tasks/ssh.yml
2018-11-29 17:27:09 +00:00
- include: tasks/arch_programming.yml
2019-11-16 16:31:39 +00:00
- include: tasks/arch_teacher.yml
2018-08-22 19:31:42 +00:00
- include: tasks/arch_gnome.yml
2018-08-22 20:54:51 +00:00
- include: tasks/arch_graphicals.yml
2018-08-23 12:32:42 +00:00
- include: tasks/dotfiles.yml
- include: tasks/dotfiles_desktop.yml
- include: tasks/home_autofs.yml
2019-04-18 14:20:08 +00:00
- include: tasks/nfs_share.yml
2019-04-18 14:22:20 +00:00
- include: tasks/wine.yml
- include: tasks/gaming.yml
2018-08-25 07:49:39 +00:00
- include: tasks/choux_borg_backup.yml
- include: tasks/arch_virtualbox.yml
2018-08-24 08:17:21 +00:00
handlers:
- name: restart sshd
service:
name: sshd
state: restarted
2020-01-02 18:13:11 +00:00
- name: restart nfs-server
2019-04-18 17:15:18 +00:00
service:
name: nfs-server
state: restarted
2020-01-02 18:13:11 +00:00
- name: restart nfs-client
service:
name: nfs-client
state: restarted
- name: restart autofs
service:
name: autofs
state: restarted