Skip to content
Snippets Groups Projects
Commit 0429e045 authored by Attila Farkas's avatar Attila Farkas
Browse files

Fix requirement inclusion

parent 5f2b9810
No related branches found
No related tags found
1 merge request!32Version 2.0.0
......@@ -175,15 +175,14 @@ class Vagrantfile:
attributes.append(String("galaxy_role_file",
"provisioning/requirements.yml"))
attributes.append(String("galaxy_roles_path", "provisioning/roles"))
if group is None:
attributes.append(String("limit", device.name))
else:
attributes.append(String("limit", group))
attributes.append(String("galaxy_command",
"sudo ansible-galaxy install --role-file="
"%{role_file} --roles-path=%{roles_path} "
"--force"))
if group is None:
attributes.append(String("limit", device.name))
else:
attributes.append(String("limit", group))
return attributes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment