Ansible_workstation/Songe.yml

28 lines
580 B
YAML

---
- hosts: localhost
connection: local
vars_files:
- vars/common.yml
- vars/Songe.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/NAS_mounts.yml
# - include: tasks/borg_server.yml
handlers:
- name: restart sshd
service:
name: sshd
state: restarted
- name: restart nfs
service:
name: nfs-kernel-server
state: restarted