Package Details: openvswitch-git 1:2.10.1.r64.gd612a4961-1

Git Clone URL: https://aur.archlinux.org/openvswitch-git.git (read-only, click to copy)
Package Base: openvswitch-git
Description: Production Quality, Multilayer Open Virtual Switch
Upstream URL: http://openvswitch.org
Licenses: Apache
Conflicts: openvswitch
Provides: openvswitch
Submitter: None
Maintainer: bidulock
Last Packager: bidulock
Votes: 1
Popularity: 0.000000
First Submitted: 2012-01-09 14:04 (UTC)
Last Updated: 2018-12-29 10:23 (UTC)

Dependencies (5)

Required by (14)

Sources (4)

Latest Comments

stronnag commented on 2013-05-22 18:06 (UTC)

The netctl file currently shipped does not work. The following does. ###################################################################### # Contributed by: Jonathan Hudson <jh+arch@daria.co.uk> . "$SUBR_DIR/ip" OVSCTL="/usr/bin/ovs-vsctl" declare -a BindsToInterfaces openvswitch_up() { if ! $OVSCTL br-exists "$INTERFACE"; then $OVSCTL add-br "$INTERFACE" fi for ovs_client in "${BindsToInterfaces[@]}"; do ip link set "$ovs_client" promisc on up ip addr flush dev "$ovs_client" if ! $OVSCTL list-ports "$Interface" | grep -q "$ovs_client"; then $OVSCTL add-port "$Interface" "$ovs_client" fi done bring_interface_up "$Interface" ip_set return 0 } openvswitch_down() { for ovs_client in "${BindsToInterfaces[@]}"; do ip link set "$ovs_client" promisc off down if $OVSCTL list-ports "$Interface" | grep -q "$ovs_client"; then $OVSCTL del-port "$Interface" "$ovs_client" fi done ip_unset bring_interface_down "$Interface" return 0 } # vim: set ts=4 et sw=4: ###################################################################### Please consider inclusion. See also https://bugs.archlinux.org/task/35401

<deleted-account> commented on 2012-08-26 04:57 (UTC)

Install fails because "$pkgdir/etc/conf.d" doesn't exist. Just need to add an entry for this in the "install -d ..." line under package(). Also, /etc/conf.d/openvswitch-git is installed, but the init script looks for /etc/conf.d/openvswitch .

<deleted-account> commented on 2012-04-27 18:24 (UTC)

I would like to hear your comments about openvswitch and brcompat here: https://github.com/slacks42/arch-pkgbuilds/issues/1 Thank you

<deleted-account> commented on 2012-01-25 19:40 (UTC)

Since linux kernel 3.3-rc1, OpenvSwitch's kernel module has been merged. So there is no need to do a dkms stuff. Also, the configure-python2.patch is missing which failed PKGBUILD