From 726e78f811ed4120ae81633b05ddc0fd521aba95 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Thu, 19 Sep 2019 09:53:20 +0200 Subject: [PATCH] Feat: Nouvelle config pour Poivre --- Poivre.yml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Poivre.yml diff --git a/Poivre.yml b/Poivre.yml new file mode 100644 index 0000000..5d3662e --- /dev/null +++ b/Poivre.yml @@ -0,0 +1,38 @@ +--- +- hosts: localhost + connection: local + + vars_files: + - vars/common.yml + - vars/home.yml + - vars/Combava.yml + + tasks: + - include: tasks/ansible.yml + - include: tasks/arch_aur.yml + - include: tasks/arch_CLI_packages.yml + - include: tasks/dd_backup.yml + - include: tasks/prompt.yml + - include: tasks/users.yml + - include: tasks/sudo.yml + - include: tasks/ssh.yml + - include: tasks/arch_programming.yml + - include: tasks/arch_gnome.yml + - include: tasks/arch_graphicals.yml + - include: tasks/dotfiles.yml + - include: tasks/dotfiles_desktop.yml + - include: tasks/home_autofs.yml + - include: tasks/laptop.yml + # - include: tasks/nfs_share.yml + #- include: tasks/wine.yml + # - include: tasks/arch_virtualbox.yml + + handlers: + - name: restart sshd + systemd: + name: sshd + state: restarted + - name: restart nfs + systemd: + name: nfs-server + state: restarted