1 |
bytegw |
1.1 |
diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/db/configuration/defaults/ExternalInterface/10MTU mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/db/configuration/defaults/ExternalInterface/10MTU |
2 |
|
|
--- e-smith-base-4.18.0/root/etc/e-smith/db/configuration/defaults/ExternalInterface/10MTU 1970-01-01 10:00:00.000000000 +1000 |
3 |
|
|
+++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/db/configuration/defaults/ExternalInterface/10MTU 2008-01-09 20:15:54.000000000 +1100 |
4 |
|
|
@@ -0,0 +1 @@ |
5 |
|
|
+1400 |
6 |
|
|
diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/db/configuration/defaults/InternalInterface/10MTU mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/db/configuration/defaults/InternalInterface/10MTU |
7 |
|
|
--- e-smith-base-4.18.0/root/etc/e-smith/db/configuration/defaults/InternalInterface/10MTU 1970-01-01 10:00:00.000000000 +1000 |
8 |
|
|
+++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/db/configuration/defaults/InternalInterface/10MTU 2008-01-09 20:15:54.000000000 +1100 |
9 |
|
|
@@ -0,0 +1 @@ |
10 |
|
|
+1400 |
11 |
|
|
diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/etc/e-smith/templates/etc/sysconfig/network-scripts/ifcfg-ethX/10MTU mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/sysconfig/network-scripts/ifcfg-ethX/10MTU |
12 |
|
|
--- e-smith-base-4.18.0/root/etc/e-smith/templates/etc/sysconfig/network-scripts/ifcfg-ethX/10MTU 1970-01-01 10:00:00.000000000 +1000 |
13 |
|
|
+++ mezzanine_patched_e-smith-base-4.18.0/root/etc/e-smith/templates/etc/sysconfig/network-scripts/ifcfg-ethX/10MTU 2008-01-09 20:10:51.000000000 +1100 |
14 |
|
|
@@ -0,0 +1,17 @@ |
15 |
|
|
+{ |
16 |
|
|
+ my $mtu = undef; |
17 |
|
|
+ $OUT = ''; |
18 |
|
|
+ |
19 |
|
|
+ if ($is_internal) |
20 |
|
|
+ { |
21 |
|
|
+ $mtu = $InternalInterface{MTU}; |
22 |
|
|
+ } |
23 |
|
|
+ if ($is_external) |
24 |
|
|
+ { |
25 |
|
|
+ $mtu = $ExternalInterface{MTU}; |
26 |
|
|
+ } |
27 |
|
|
+ if ($mtu) |
28 |
|
|
+ { |
29 |
|
|
+ $OUT .= "MTU=$mtu"; |
30 |
|
|
+ } |
31 |
|
|
+} |