From f1be9f0eed79223eb6717c83d6862fcbd57f66c1 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 15 Mar 2016 12:30:02 +0530 Subject: [PATCH] [fix] playbooks path --- playbooks/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/install.py b/playbooks/install.py index c9b16dbb..773a068c 100644 --- a/playbooks/install.py +++ b/playbooks/install.py @@ -109,7 +109,7 @@ def run_playbook(playbook_name, sudo): args = ["ansible-playbook", "-c", "local", playbook_name] if sudo: args.append('-K') - success = subprocess.check_call(args, cwd=os.path.join(bench_repo, 'bench', 'playbooks')) + success = subprocess.check_call(args, cwd=os.path.join(bench_repo, 'playbooks')) return success def parse_commandline_args():