9bdcb27dd03c793829f4756b9edc1d8a290e589d
[integration/packaging/ansible-opendaylight.git] / tasks / configure_karaf_features.yml
1 - name: Build Karaf feature list
2   set_fact:
3     features: "{{ default_features + extra_features }}"
4
5 - name: Configure ODL Karaf features
6   lineinfile:
7     dest=/opt/opendaylight/etc/org.apache.karaf.features.cfg
8     regexp=^featuresBoot=
9     line=featuresBoot={{ features|join(',') }}
10     owner=odl
11     group=odl
12   notify:
13     - Stop ODL
14     - Cleanup Karaf
15     - Start ODL