Ansible_workstation/BV_boutique.yml

25 lines
504 B
YAML
Raw Normal View History

2020-02-24 05:55:28 +00:00
---
- hosts: localhost
connection: local
vars_files:
- vars/common.yml
- vars/server.yml
2020-02-24 05:59:32 +00:00
- vars/BV_boutique.yml
2020-02-24 05:55:28 +00:00
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