Ansible_workstation/Choux.yml

32 lines
761 B
YAML
Raw Normal View History

2018-08-22 18:42:52 +00:00
---
- hosts: localhost
connection: local
vars_files:
- vars/common.yml
- 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
2018-08-23 12:35:40 +00:00
- include: tasks/arch_CLI_packages.yml
2018-08-22 20:54:51 +00:00
- include: tasks/zsh.yml
2018-08-22 18:42:52 +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
2018-08-22 20:16:31 +00:00
- include: tasks/arch_aur.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
2018-08-25 06:59:23 +00:00
- include: tasks/wine.yml
- include: tasks/home_autofs.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