Files
skyline-apiserver/playbooks/devstack/pre.yaml
Sowmya Nethi 0238c982e6 fix: failures preventing tests to pass
Two fixes needed to happen, firstly invalid vars syntax in playbooks.
Then removed neutron-lib from the testing requirements as its unused and
its other dependencies are not included.

Change-Id: I75c2903d8aabe047e02b9f0219976cd19d4e3cf7
Signed-off-by: Sowmya Nethi <sowmya.kamavaram@rackspace.com>
Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
2025-09-26 18:00:43 -05:00

22 lines
550 B
YAML

---
- hosts: controller
roles:
- ensure-tox
- hosts: controller
vars:
devstack_base_dir: /opt/stack
skyline_source_dirs: src/opendev.org/openstack/skyline-apiserver
tasks:
- name: Copy skyline-apiserver repos into devstack working directory
command: rsync -a {{ skyline_source_dirs }} {{ devstack_base_dir }}
become: yes
- name: Set ownership of repos
file:
path: '{{ devstack_base_dir }}'
state: directory
recurse: true
owner: stack
group: stack
become: yes