diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-12-21 16:08:52 +0000 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-12-21 16:08:52 +0000 |
commit | 74535c03b8a5836c81c32c3e9ca98e0be9408dca (patch) | |
tree | 4b565c6cc99d5ca3db352a2c43463601e8fbf2b0 | |
parent | 1e0f5cf2f398d83c6064d918007456bc7ab61bb0 (diff) | |
download | rules-74535c03b8a5836c81c32c3e9ca98e0be9408dca.tar.gz |
playbooks: Prevent sensible task to be always run
-rw-r--r-- | playbooks/site.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/playbooks/site.yml b/playbooks/site.yml index ac4417b..25c39c3 100644 --- a/playbooks/site.yml +++ b/playbooks/site.yml @@ -1,7 +1,9 @@ - hosts: all roles: - role: wireguard - tags: role_wireguard + tags: + - role_wireguard + - never - hosts: servers roles: @@ -51,4 +53,6 @@ - hosts: stack0 roles: - role: vmm - tags: role_vmm + tags: + - role_vmm + - never |