Ansible_workstation/BV_boutique.yml

25 lines
504 B
YAML

---
- hosts: localhost
connection: local
vars_files:
- vars/common.yml
- vars/server.yml
- vars/BV_boutique.yml
tasks:
- include: tasks/ansible.yml
- include: tasks/deb_CLI_packages.yml
- include: tasks/prompt.yml
- include: tasks/users.yml
- include: tasks/sudo.yml
- include: tasks/ssh.yml
- include: tasks/dotfiles.yml
- include: tasks/deb_docker.yml
handlers:
- name: restart sshd
service:
name: sshd
state: restarted