nova/contrib/xen/vif-openstack
liu-sheng 74f953a1d7 Remove vi modelines
We don't need to have the vi modelines in each source file,
it can be set in a user's vimrc if required.

Also a check is added to hacking to detect if they are re-added.

Change-Id: I347307a5145b2760c69085b6ca850d6a9137ffc6
Closes-Bug: #1229324
2014-02-03 14:19:44 +00:00

39 lines
856 B
Bash
Executable File

#!/bin/bash
## copyright: B1 Systems GmbH <info@b1-systems.de>, 2012.
## author: Christian Berendt <berendt@b1-systems.de>, 2012.
## license: Apache License, Version 2.0
##
## purpose:
## Creates a new vif device without attaching it to a
## bridge. Quantum Linux Bridge Agent will attach the
## created device to the belonging bridge.
##
## usage:
## place the script in ${XEN_SCRIPT_DIR}/vif-openstack and
## set (vif-script vif-openstack) in /etc/xen/xend-config.sxp.
dir=$(dirname "$0")
. "$dir/vif-common.sh"
case "$command" in
online)
setup_virtual_bridge_port "$dev"
ip link set $dev up
;;
offline)
ip link set $dev down
;;
add)
setup_virtual_bridge_port "$dev"
ip link set $dev up
;;
esac
if [ "$type_if" = vif -a "$command" = "online" ]
then
success
fi