[pve-devel] applied: [PATCH firewall 0/6] pve-firewall packaging cleanup

2018-03-08 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] applied: [pmg-devel] [PATCH pmg-gui/widget-toolkit] fix gettext for safari

2018-03-08 Thread Dietmar Maurer
applied > this series fixes the gettext definition for safari on macos > > for pve only the widget-toolkit patch is needed, but for > pmg we also need to patch the pmg-gui package > (it would be best if we add a dependecy on the next widget-toolkit > verision to pmg-gui then) > > [PATCH

[pve-devel] [PATCH v2 firewall] check multiport limit in port ranges

2018-03-08 Thread Wolfgang Bumiller
Signed-off-by: Wolfgang Bumiller --- Changes: We don't actually use the returned $count for anything other than checking whether it's >1 to know whether to use `--match multiport`. This still works when counting ranges as 2. src/PVE/Firewall.pm | 11 +-- 1

[pve-devel] [PATCH firewall] check multiport limit in port ranges

2018-03-08 Thread Wolfgang Bumiller
Signed-off-by: Wolfgang Bumiller --- src/PVE/Firewall.pm | 8 1 file changed, 8 insertions(+) diff --git a/src/PVE/Firewall.pm b/src/PVE/Firewall.pm index 2feac54..f8d6009 100644 --- a/src/PVE/Firewall.pm +++ b/src/PVE/Firewall.pm @@ -1030,6 +1030,7 @@ sub

[pve-devel] [PATCH firewall 0/6] pve-firewall packaging cleanup

2018-03-08 Thread Fabian Grünbichler
various small fixes, and a solution for #1319 relevant diff of binary package: ── control file list @@ -1,9 +1,8 @@ drwxr-xr-x 0 root (0) root (0)0 2017-12-07 07:31:42.00 ./ --rw-r--r-- 0 root (0) root (0) 106 2017-12-07

[pve-devel] [PATCH firewall 2/6] debian: drop init scripts

2018-03-08 Thread Fabian Grünbichler
and switch to plain dh_systemd_* Signed-off-by: Fabian Grünbichler --- debian/pve-firewall.init | 68 debian/pvefw-logger.init | 50 --- debian/rules | 10 +-- 3 files

[pve-devel] [PATCH firewall 6/6] build: use git rev-parse for GITVERSION

2018-03-08 Thread Fabian Grünbichler
Signed-off-by: Fabian Grünbichler --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9470276..dd551f3 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ MAN1DIR=${MANDIR}/man1/ PERLDIR=${PREFIX}/share/perl5

[pve-devel] [PATCH firewall 4/6] debian: drop preinst

2018-03-08 Thread Fabian Grünbichler
the only actual code was for upgrading from PVE 3 to PVE 4.. Signed-off-by: Fabian Grünbichler --- debian/preinst | 27 --- 1 file changed, 27 deletions(-) delete mode 100644 debian/preinst diff --git a/debian/preinst b/debian/preinst

[pve-devel] [PATCH firewall 1/6] fix #1319: don't fail postinst with masked service

2018-03-08 Thread Fabian Grünbichler
by using "try-reload-or-restart" instead of "reload-or-restart" Signed-off-by: Fabian Grünbichler --- debian/postinst | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/debian/postinst b/debian/postinst index 4077183..0e6b7b2 100644

[pve-devel] [PATCH firewall 3/6] debian: switch to compat 9

2018-03-08 Thread Fabian Grünbichler
Signed-off-by: Fabian Grünbichler --- debian/compat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/compat b/debian/compat index 7f8f011..ec63514 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -7 +9 -- 2.14.2

[pve-devel] aplied: [PATCH v2 firewall] check multiport limit in port ranges

2018-03-08 Thread Dietmar Maurer
applied - and thanks for the cleanup! > On March 8, 2018 at 12:06 PM Wolfgang Bumiller wrote: > > > Signed-off-by: Wolfgang Bumiller > --- > Changes: > We don't actually use the returned $count for anything other than > checking whether it's

[pve-devel] [PATCH firewall 5/6] debian: remove duplicate dh_systemd_enable code

2018-03-08 Thread Fabian Grünbichler
dh_systemd_enable already includes this snippet via the #DEBHELPER# stanza, no need to duplicate it manually. Signed-off-by: Fabian Grünbichler --- debian/postinst | 3 --- 1 file changed, 3 deletions(-) diff --git a/debian/postinst b/debian/postinst index

[pve-devel] applied: [PATCH stable-4 container] use systemd-networkd for ubuntu >= 17.10

2018-03-08 Thread Wolfgang Bumiller
applied On Tue, Feb 27, 2018 at 01:30:09PM +0100, Thomas Lamprecht wrote: > From: Dominik Csapak > > Ubuntu Artful uses systemd-networkd now, > but we have to delete the default netplan config from the > upstream lxc container, and enable systemd-networkd > >

[pve-devel] applied: [PATCH common v2] CLIHandler: fix command usage string generation

2018-03-08 Thread Wolfgang Bumiller
applied On Tue, Mar 06, 2018 at 09:08:11AM +0100, Thomas Lamprecht wrote: > track our command string, i.e. everything which cannot be an argument > for a specific command, in resolve_cmd, as we go through the commando > definition there anyway and know if a ARGV element is part of the > command

[pve-devel] [PATCH cluster] cluster join: ensure updatecerts gets called on quorate cluster

2018-03-08 Thread Thomas Lamprecht
We moved the start of pve-cluster together with the one of corosync earlier, before the quorate check. This meant that the 'pvecm updatecerts --silent' we call in the from the pve-cluster.service through ExecStartPost exited as it has not yet quorum. So factor the respective code out to the