summaryrefslogtreecommitdiff
path: root/openstack/usr/share/openstack/openvswitch.yml
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2015-06-02 08:40:27 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2015-06-02 10:26:05 +0000
commit11547381784bf7156832caf44d81aa16413385ba (patch)
treeeff61e6fe9bb3adcf254c4e86eebca7190c65cce /openstack/usr/share/openstack/openvswitch.yml
parent3df7654ac30b6fecfb7e7eb92e30f9fc033c1e6e (diff)
downloaddefinitions-11547381784bf7156832caf44d81aa16413385ba.tar.gz
Move all the directories used for install-files into a subdirectorybaserock/adamcoldrick/all-exts-in-definitions
Change-Id: I309c183ce8b9ff9d0f5ac4807244547f2cc4ddf5
Diffstat (limited to 'openstack/usr/share/openstack/openvswitch.yml')
-rw-r--r--openstack/usr/share/openstack/openvswitch.yml38
1 files changed, 0 insertions, 38 deletions
diff --git a/openstack/usr/share/openstack/openvswitch.yml b/openstack/usr/share/openstack/openvswitch.yml
deleted file mode 100644
index 47257f7f..00000000
--- a/openstack/usr/share/openstack/openvswitch.yml
+++ /dev/null
@@ -1,38 +0,0 @@
----
-- hosts: localhost
- tasks:
-
- - name: Create openvswitch directories
- file: path={{ item }} state=directory
- with_items:
- - /etc/openvswitch
- - /var/run/openvswitch
-
- - shell: >
- ovsdb-tool create /etc/openvswitch/conf.db /usr/share/openvswitch/vswitch.ovsschema
- creates=/etc/openvswitch/conf.db
-
- # We enable the openvswitch-db-server in a different task to identify
- # the first time we run this script by identifying when we enable the
- # unit.
- #
- # We need to identify this to initialise the database.
- - name: Enable openvswitch database service
- service: name={{ item }} enabled=yes
- with_items:
- - openvswitch-db-server.service
- register: openvswitch_db_enable
-
- - name: Start openvswitch database service
- service: name={{ item }} state=started
- with_items:
- - openvswitch-db-server.service
-
- - name: initialise openvswitch-db
- shell: ovs-vsctl --no-wait init
- when: openvswitch_db_enable|changed
-
- - name: Enable and start Open vSwitch service
- service: name={{ item }} enabled=yes state=started
- with_items:
- - openvswitch.service