Statistics
| Branch: | Tag: | Revision:

root / tools / vif-ganeti.in @ 1088a02a

History | View | Annotate | Download (1.2 kB)

1
#!/bin/bash
2
#
3

    
4
# Copyright (C) 2011, 2012, 2013 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21

    
22
if [ -x "@XEN_CONFIG_DIR@/scripts/vif-custom" ]; then
23
	exec @XEN_CONFIG_DIR@/scripts/vif-custom $*
24
fi
25

    
26
source @PKGLIBDIR@/net-common
27

    
28
dir=$(dirname "$0")
29
. "$dir"/vif-common.sh
30

    
31
# taken from older vif-common.sh
32
dev=$vif
33
dev_=${dev#vif}
34
domid=${dev_%.*}
35
devid=${dev_#*.}
36
domname=$(xm domname $domid)
37

    
38
NIC_DIR=$RUN_DIR/xen-hypervisor/nic
39
INTERFACE=$dev
40
INSTANCE=$domname
41

    
42
source $NIC_DIR/$domname/$devid
43

    
44
setup_bridge
45
setup_ovs
46
setup_route
47

    
48
success