From d0695115cd6d38cf6e3b3155cdfccba343d6ad28 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@clevo" Date: Tue, 22 Feb 2022 11:16:50 +0100 Subject: [PATCH] toansible: Add tags for roles --- playbook.yml | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/playbook.yml b/playbook.yml index 072c650..27753a9 100644 --- a/playbook.yml +++ b/playbook.yml @@ -2,11 +2,21 @@ - hosts: localhost roles: - - base - - kitty - - terminator - - neovim - - ssh-agent - - pacman.conf - - firefox - - tor + - role: base + tags: base + - role: bash + tags: bash + - role: kitty + tags: kitty + - role: terminator + tags: terminator + - role: neovim + tags: neovim + - role: ssh-agent + tags: ssh-agent + - role: pacman.conf + tags: pacman.conf + - role: firefox + tags: firefox + - role: tor + tags: tor