Ansible_workstation/Bilimbi.yml

24 lines
460 B
YAML
Raw Normal View History

2018-08-25 08:42:00 +00:00
---
- hosts: localhost
connection: local
vars_files:
- vars/common.yml
2018-11-10 17:23:32 +00:00
- vars/server.yml
2018-08-25 08:42:00 +00:00
- vars/Bilimbi.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
2018-08-28 07:54:56 +00:00
- include: tasks/docker.yml
2018-08-25 08:42:00 +00:00
handlers:
- name: restart sshd
service:
name: sshd
state: restarted