From ec54380d3ebc2a5258b45b1e05b237ded4c81163 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Wed, 27 Feb 2019 21:51:25 -0500 Subject: [PATCH] Install roles into ~/.ansible/roles This allows for us to managed multiple project roles in a single location. Change-Id: I99e9f4d942ce6bebbe705db1f2df276371249777 Signed-off-by: Paul Belanger --- tools/install_roles.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/install_roles.sh b/tools/install_roles.sh index a5cb1b0..fe4aede 100755 --- a/tools/install_roles.sh +++ b/tools/install_roles.sh @@ -21,4 +21,4 @@ if [ -f /etc/ci/mirror_info.sh ]; then sed -e "s|https://|file://${HOME}/src/|g" -i $TOOLSDIR/requirements.yaml fi -ansible-galaxy install -v -r $TOOLSDIR/requirements.yaml -p playbooks/roles $@ +ansible-galaxy install -v -r $TOOLSDIR/requirements.yaml -p ~/.ansible/roles $@