1 |
unnilennium |
1.1 |
diff -Nur -x '*.orig' -x '*.rej' smeserver-openvpn-bridge-2.0/root/etc/e-smith/db/configuration/migrate/50openvpn-bridge-if mezzanine_patched_smeserver-openvpn-bridge-2.0/root/etc/e-smith/db/configuration/migrate/50openvpn-bridge-if |
2 |
|
|
--- smeserver-openvpn-bridge-2.0/root/etc/e-smith/db/configuration/migrate/50openvpn-bridge-if 2007-09-12 11:51:35.000000000 +0200 |
3 |
|
|
+++ mezzanine_patched_smeserver-openvpn-bridge-2.0/root/etc/e-smith/db/configuration/migrate/50openvpn-bridge-if 1970-01-01 01:00:00.000000000 +0100 |
4 |
|
|
@@ -1,15 +0,0 @@ |
5 |
|
|
-{ |
6 |
|
|
- my $openvpn = $DB->get('openvpn-bridge') || $DB->new_record('openvpn-bridge', {type => 'service'}); |
7 |
|
|
- my $br = $openvpn->prop('brIf') || 'br0'; |
8 |
|
|
- my $IntIfConf = $DB->get('InternalInterface'); |
9 |
|
|
- my $IntIfName = $IntIfConf->prop('Name'); |
10 |
|
|
- # If the InternalInterface Name is the same as the bridge, there's nothing to do |
11 |
|
|
- return "" if ($IntIfName eq $br); |
12 |
|
|
- |
13 |
|
|
- # else, we store the old InternalInterface Name in localIf |
14 |
|
|
- # and we set the InternalInterface to be the bridge |
15 |
|
|
- |
16 |
|
|
- $openvpn->set_prop('localIf',$IntIfName); |
17 |
|
|
- $IntIfConf->set_prop('Name',$br); |
18 |
|
|
- |
19 |
|
|
-} |