From b0fb07c6509665a9011c78ed775951bd90da0313 Mon Sep 17 00:00:00 2001 From: Jerry Vonau Date: Mon, 23 Oct 2017 20:18:26 -0500 Subject: [PATCH] python needs single quotes for variables --- roles/osm/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/osm/tasks/main.yml b/roles/osm/tasks/main.yml index e568f14ab..cce9c7de3 100644 --- a/roles/osm/tasks/main.yml +++ b/roles/osm/tasks/main.yml @@ -73,8 +73,8 @@ - name: All - Point wsgi to virtual environment lineinfile: dest={{ osm_venv }}/bin/iiab.wsgi - regexp='path_to_virtualenv*' - line='path_to_virtualenv = /usr/local/osm' + regexp="path_to_virtualenv*" + line="path_to_virtualenv = '/usr/local/osm'" state=present - name: All - Copy IIAB config file