From b06a8710007649ec2a059b74730f5d4aa46e3539 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Thu, 30 Apr 2015 09:25:24 -0500 Subject: [PATCH] Add tags to the puddle role. These might be helpful if we ever want to reconfigure puddle without re-installing it. Same with distill. Signed-off-by: Andrew Schoen --- roles/puddle/tasks/main.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/roles/puddle/tasks/main.yml b/roles/puddle/tasks/main.yml index 4292ad86..df6b87ad 100644 --- a/roles/puddle/tasks/main.yml +++ b/roles/puddle/tasks/main.yml @@ -5,12 +5,16 @@ # install puddle - include: install.yml + tags: + - install-puddle # configure NFS - include: nfs.yml # configure puddle - include: configure.yml + tags: + - configure-puddle # install and configure web server - include: nginx.yml @@ -19,4 +23,9 @@ # install and configure distill - include: distill/install.yml + tags: + - install-distill + - include: distill/configure.yml + tags: + - configure-distill -- 2.47.3