summaryrefslogtreecommitdiffstats
path: root/recipes-networking/openvswitch/files/openvswitch-testcontroller-setup
diff options
context:
space:
mode:
authorMark Asselstine <mark.asselstine@windriver.com>2015-12-11 12:28:24 -0500
committerBruce Ashfield <bruce.ashfield@windriver.com>2015-12-15 08:47:25 -0500
commit5181ec2259eba5f4d3ec8516ea693bbc94481cf3 (patch)
tree5404662634a996cdcde7e82e501446f24628ed6e /recipes-networking/openvswitch/files/openvswitch-testcontroller-setup
parent9772ddbec385f08a3b92bd70a0de898c6e982aa7 (diff)
downloadmeta-virtualization-5181ec2259eba5f4d3ec8516ea693bbc94481cf3.tar.gz
openvswitch: rename openvswitch-controller
As of version 2.4.0 openvswitch-controller has been renamed to openvswitch-testcontroller. This was documented in the upstream 'NEWS': - test-controller has been renamed ovs-testcontroller at request of users who find it useful for testing basic OpenFlow setups. It is still not a necessary or desirable part of most Open vSwitch deployments. Our initscripts and such have continued to reference the old name despite the application name name changing and so openvswitch-controller packaging has been broken for some time now. We rename the openvswitch-controller package to reflect the upstream name change and apply this name change throughout. We also drop the RDEPENDS as the upstream comments also indicate that this package is not needed for a normal openvswitch deployment. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-networking/openvswitch/files/openvswitch-testcontroller-setup')
-rw-r--r--recipes-networking/openvswitch/files/openvswitch-testcontroller-setup29
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes-networking/openvswitch/files/openvswitch-testcontroller-setup b/recipes-networking/openvswitch/files/openvswitch-testcontroller-setup
new file mode 100644
index 00000000..b431ece5
--- /dev/null
+++ b/recipes-networking/openvswitch/files/openvswitch-testcontroller-setup
@@ -0,0 +1,29 @@
1# This is a POSIX shell fragment -*- sh -*-
2
3# LISTEN: What OpenFlow connection methods should the controller listen on?
4#
5# This is a space-delimited list of connection methods:
6#
7# * "pssl:[PORT]": Listen for SSL connections on the specified PORT
8# (default: 6633). The private key, certificate, and CA certificate
9# must be specified below.
10#
11# * "pctp:[PORT]": Listen for TCP connections on the specified PORT
12# (default: 6633). Not recommended for security reasons.
13#
14LISTEN="pssl:"
15
16# PRIVKEY: Name of file containing controller's private key.
17# Required if SSL enabled.
18PRIVKEY=/etc/openvswitch-testcontroller/privkey.pem
19
20# CERT: Name of file containing certificate for private key.
21# Required if SSL enabled.
22CERT=/etc/openvswitch-testcontroller/cert.pem
23
24# CACERT: Name of file containing switch CA certificate.
25# Required if SSL enabled.
26CACERT=/etc/openvswitch-testcontroller/cacert.pem
27
28# Additional options to pass to controller, e.g. "--hub"
29DAEMON_OPTS=""