Ansible_workstation/Manioc.yml

24 lines
459 B
YAML

---
- hosts: localhost
connection: local
vars_files:
- vars/common.yml
- vars/server.yml
- vars/Manioc.yml
tasks:
- include: tasks/deb_CLI_packages.yml
- include: tasks/zsh.yml
- include: tasks/users.yml
- include: tasks/sudo.yml
- include: tasks/ssh.yml
- include: tasks/dotfiles.yml
- include: tasks/docker.yml
handlers:
- name: restart sshd
service:
name: sshd
state: restarted