]> git.proxmox.com Git - pve-common.git/commitdiff
fix syntax error
authorDietmar Maurer <dietmar@proxmox.com>
Mon, 28 Jan 2013 10:23:39 +0000 (11:23 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Mon, 28 Jan 2013 10:23:39 +0000 (11:23 +0100)
Makefile
data/PVE/Network.pm
debian/changelog

index 0a34031f4f866b7f4090cdacfec96275dbb8149f..6a2c4ac51b0b1028cc22c9f900de7bf10f07ec0b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 RELEASE=2.3
 
 VERSION=1.0
-PKGREL=42
+PKGREL=43
 
 PACKAGE=libpve-common-perl
 
index a3551deea49b24d6737947d62f7c7cc7ccaa87c8..ae0ebdb42222cc45fd5ec87823f2b128bbfd5695 100644 (file)
@@ -18,9 +18,9 @@ sub setup_tc_rate_limit {
 
     # virtio uses large packets 64K, so we need to set mtu to that
     # value - else filter drops those packets and rate limit does not work.
-    run_command("/sbin/tc filter add dev $iface parent ffff: "
-               "protocol ip prio 50 u32 match ip src 0.0.0.0/0 "
-               "police rate ${rate}bps burst ${burst}b "
+    run_command("/sbin/tc filter add dev $iface parent ffff: " .
+               "protocol ip prio 50 u32 match ip src 0.0.0.0/0 " .
+               "police rate ${rate}bps burst ${burst}b " .
                "mtu 64kb drop flowid :1");
 
     # tbf does not work for unknown reason
index d439a359c52c09da6bbbc411799eb6680c9a56d5..942eaa4817892e5117a44539cf9d14413b9a04fd 100644 (file)
@@ -1,4 +1,4 @@
-libpve-common-perl (1.0-42) unstable; urgency=low
+libpve-common-perl (1.0-43) unstable; urgency=low
 
   * tc: use rate filter with mtu 64k (instead of avrate)