Ansible_workstation/rpi3.yml

24 lines
467 B
YAML
Raw Normal View History

2019-02-01 10:02:00 +00:00
---
- hosts: localhost
connection: local
vars_files:
- vars/common.yml
- vars/server.yml
- vars/rpi3.yml
2019-02-01 10:02:00 +00:00
tasks:
- include: tasks/deb_CLI_packages.yml
2019-02-08 07:28:22 +00:00
- include: tasks/prompt.yml
2019-02-01 10:02:00 +00:00
- include: tasks/users.yml
- include: tasks/sudo.yml
- include: tasks/ssh.yml
- include: tasks/dotfiles.yml
2019-02-08 06:42:41 +00:00
- include: tasks/epaper_driver.yml
2019-02-01 10:02:00 +00:00
handlers:
- name: restart sshd
service:
name: sshd
state: restarted