openstack-ansible-os_neutron/tasks/plumgrid_config.yml
alij b94bd9a180 Update plumgrid plugin installation from pip to deb
- Installation for networking-plumgrid has been updated from
  pip to debian.
- Installs debian using apt
- Links files inside venv in case of virtualenv

Change-Id: Id63f69690c5025175846a0a0db9e87292dd17d90
Signed-off-by: alij <alij@plumgrid.com>
2016-08-21 07:37:10 -07:00

63 lines
2.1 KiB
YAML

---
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Setup PLUMlib Neutron Config
config_template:
src: plugins/plumgrid/plumlib.ini
dest: "{{ neutron_conf_dir }}/plugins/plumgrid/plumlib.ini"
owner: "{{ neutron_system_user_name }}"
group: "{{ neutron_system_group_name }}"
config_overrides: "{{ neutron_plumlib_ini_overrides }}"
config_type: "ini"
- name: Place pgrc file
template:
src: plugins/plumgrid/pgrc
dest: "{{ neutron_conf_dir }}/plugins/plumgrid/pgrc"
owner: "{{ neutron_system_user_name }}"
group: "{{ neutron_system_group_name }}"
- name: Install networking-plumgrid
apt:
name: networking-plumgrid
state: "{{ neutron_package_state }}"
force: yes
register: install_packages
until: install_packages|success
retries: 5
delay: 2
when:
- inventory_hostname in groups[neutron_services['neutron-server']['group']]
- name: Register networking_plumgrid version
shell: >
dpkg -l | grep networking-plumgrid | awk '{print $3}'
register: np_ver
when:
- inventory_hostname in groups[neutron_services['neutron-server']['group']]
- name: Link networking-plumgrid files (venv)
file:
src: "{{ item.name }}"
dest: "{{ neutron_venv_lib_dir }}{{ item.name | basename }}"
state: "{{ item.state }}"
force: "yes"
with_items:
- { state: link, name: "/usr/local/lib/python2.7/dist-packages/networking_plumgrid" }
- { state: link, name: "/usr/local/lib/python2.7/dist-packages/networking_plumgrid-{{ np_ver.stdout }}-py2.7.egg-info" }
when:
- neutron_venv_enabled | bool
- inventory_hostname in groups[neutron_services['neutron-server']['group']]