diff options
author | Mark Asselstine <mark.asselstine@windriver.com> | 2015-12-11 12:28:24 -0500 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-12-15 08:47:25 -0500 |
commit | 5181ec2259eba5f4d3ec8516ea693bbc94481cf3 (patch) | |
tree | 5404662634a996cdcde7e82e501446f24628ed6e /recipes-networking/openvswitch/files/openvswitch-controller-setup | |
parent | 9772ddbec385f08a3b92bd70a0de898c6e982aa7 (diff) | |
download | meta-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-controller-setup')
-rw-r--r-- | recipes-networking/openvswitch/files/openvswitch-controller-setup | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/recipes-networking/openvswitch/files/openvswitch-controller-setup b/recipes-networking/openvswitch/files/openvswitch-controller-setup deleted file mode 100644 index 1d9f9261..00000000 --- a/recipes-networking/openvswitch/files/openvswitch-controller-setup +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
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 | # | ||
14 | LISTEN="pssl:" | ||
15 | |||
16 | # PRIVKEY: Name of file containing controller's private key. | ||
17 | # Required if SSL enabled. | ||
18 | PRIVKEY=/etc/openvswitch-controller/privkey.pem | ||
19 | |||
20 | # CERT: Name of file containing certificate for private key. | ||
21 | # Required if SSL enabled. | ||
22 | CERT=/etc/openvswitch-controller/cert.pem | ||
23 | |||
24 | # CACERT: Name of file containing switch CA certificate. | ||
25 | # Required if SSL enabled. | ||
26 | CACERT=/etc/openvswitch-controller/cacert.pem | ||
27 | |||
28 | # Additional options to pass to controller, e.g. "--hub" | ||
29 | DAEMON_OPTS="" | ||