|
1 |
| -#!/bin/sh |
| 1 | +#!/bin/bash |
2 | 2 |
|
3 | 3 | ### Pre-requisite on the host
|
4 | 4 | # run a cluster store like etcd or consul
|
@@ -71,16 +71,6 @@ echo "Started OVS, logs in $log_dir" >> $BOOTUP_LOGFILE
|
71 | 71 |
|
72 | 72 | set +e
|
73 | 73 |
|
74 |
| -echo "Starting Netplugin " >> $BOOTUP_LOGFILE |
75 |
| -while true ; do |
76 |
| - echo "/netplugin $dbg_flag --plugin-mode=$plugin_mode $vxlan_port_cfg --vlan-if=$iflist $store_arg $ctrl_ip_cfg $vtep_ip_cfg" >> $BOOTUP_LOGFILE |
77 |
| - /netplugin $dbg_flag --plugin-mode=$plugin_mode $vxlan_port_cfg --vlan-if=$iflist $store_arg $ctrl_ip_cfg $vtep_ip_cfg &> $log_dir/netplugin.log |
78 |
| - echo "CRITICAL : Net Plugin has exited, Respawn in 5" >> $BOOTUP_LOGFILE |
79 |
| - mv $log_dir/netplugin.log $log_dir/netplugin.log.lastrun |
80 |
| - sleep 5 |
81 |
| - echo "Restarting Netplugin " >> $BOOTUP_LOGFILE |
82 |
| -done & |
83 |
| - |
84 | 74 | if [ $plugin_role == "master" ]; then
|
85 | 75 | if [ -z "$fwd_mode" ]; then
|
86 | 76 | echo "fwd_mode is not set, plugin cannot be enabled"
|
@@ -116,4 +106,23 @@ else
|
116 | 106 | echo "Not starting netmaster as plugin role is" $plugin_role >> $BOOTUP_LOGFILE
|
117 | 107 | fi
|
118 | 108 |
|
| 109 | +if [[ "$fwd_mode" == "bridge" ]]; then |
| 110 | + network_mode=vlan |
| 111 | +else |
| 112 | + network_mode=vxlan |
| 113 | +fi |
| 114 | + |
| 115 | +echo "Starting Netplugin" |
| 116 | +while true ; do |
| 117 | + set -x |
| 118 | + /netplugin $dbg_flag --plugin-mode=$plugin_mode $vxlan_port_cfg \ |
| 119 | + --vlan-if=$iflist $store_arg $ctrl_ip_cfg $vtep_ip_cfg \ |
| 120 | + --netmode $network_mode --fwdmode $fwd_mode &> $log_dir/netplugin.log |
| 121 | + set +x |
| 122 | + echo "CRITICAL : Net Plugin has exited, Respawn in 5" |
| 123 | + mv $log_dir/netplugin.log $log_dir/netplugin.log.lastrun |
| 124 | + sleep 5 |
| 125 | + echo "Restarting Netplugin" |
| 126 | +done & |
| 127 | + |
119 | 128 | while true; do sleep 1; done
|
0 commit comments