[pve-devel] applied: [PATCH pve-container 2/2] enable emulation of containers using qemu-user-static

2018-09-17 Thread Dietmar Maurer
applied with the fixes you pointed out - thanks! > On September 17, 2018 at 1:53 PM Wolfgang Bumiller > wrote: > > > On Mon, Sep 17, 2018 at 01:41:38PM +0200, Dietmar Maurer wrote: > > You need to install package qemu-user-static which provides > > the emulation toolkit. > > > > - emulate

Re: [pve-devel] [PATCH v2 installer 1/1] Fix #1527: Use 'iso-codes' package country naming

2018-09-17 Thread Thomas Lamprecht
On 9/13/18 3:45 PM, Rhonda D'Vine wrote: > The iso 3166-1 information in the iso-codes package seems to be more > up to par than the one that was used from tzdata. > > Signed-off-by: Rhonda D'Vine > --- looks OK in general, few nits still inline. Oh, and for single patches a cover-letter is not

[pve-devel] [PATCH v3 installer] Fix #1527: Use 'iso-codes' package country naming

2018-09-17 Thread Rhonda D'Vine
The iso 3166-1 information in the iso-codes package seems to be more up to par than the one that was used from tzdata. Also remove obsolete comments. Signed-off-by: Rhonda D'Vine --- country.pl | 20 +--- debian/control | 1 + 2 files changed, 6 insertions(+), 15

Re: [pve-devel] [PATCH common] fix #1914: CLIFormatter: check also for existance of 'type'

2018-09-17 Thread Dominik Csapak
typo in the subject: s/existance/existence/ ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] [PATCH ha-manager] document api result for ha resources

2018-09-17 Thread Dominik Csapak
Signed-off-by: Dominik Csapak --- src/PVE/API2/HA/Resources.pm | 39 ++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/src/PVE/API2/HA/Resources.pm b/src/PVE/API2/HA/Resources.pm index 47c34cd..6b51515 100644 --- a/src/PVE/API2/HA/Resources.pm

[pve-devel] applied: [PATCH common] fix #1914: CLIFormatter: check also for existance of 'type'

2018-09-17 Thread Dietmar Maurer
applied (with typo fixed) ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] applied: [PATCH zfsonlinux 2/3] update/rebase to spl-0.7.11 with patches from ZOL

2018-09-17 Thread Thomas Lamprecht
Signed-off-by: Thomas Lamprecht --- spl-patches/0006-Linux-4.18-compat-Kconfig.patch | 57 spl-patches/0007-Tag-spl-0.7.11.patch| 56 +++ spl-patches/series | 2 + 3 files changed, 115 insertions(+) create

[pve-devel] applied: [PATCH qemu-server] qemu 3.0 : add hv_synic && hv_stimer hyperv enlightment

2018-09-17 Thread Wolfgang Bumiller
On Thu, Sep 13, 2018 at 08:25:21PM +0200, Alexandre DERUMIER wrote: > >>Why 3.0 now? I thought 2.12 fixes this? > > > theses flags exists since a long time (qemu 2.5), I think we didn't enabled > it on proxmox4 because of missin kernel support. > > but as you said me that you are working on

[pve-devel] [PATCH pve-container 1/2] detect_architecture: use ELF machine header to detect ISA

2018-09-17 Thread Dietmar Maurer
We can now detect arm64 and armhf containers. Signed-off-by: Dietmar Maurer --- src/PVE/LXC/Config.pm | 2 +- src/PVE/LXC/Create.pm | 23 ++- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/src/PVE/LXC/Config.pm b/src/PVE/LXC/Config.pm index

[pve-devel] [PATCH pve-container 2/2] enable emulation of containers using qemu-user-static

2018-09-17 Thread Dietmar Maurer
You need to install package qemu-user-static which provides the emulation toolkit. - emulate arm on x86 - emulate x86 on arm Signed-off-by: Dietmar Maurer --- src/PVE/LXC/Setup.pm | 40 1 file changed, 40 insertions(+) diff --git a/src/PVE/LXC/Setup.pm

Re: [pve-devel] [PATCH pve-container 2/2] enable emulation of containers using qemu-user-static

2018-09-17 Thread Wolfgang Bumiller
On Mon, Sep 17, 2018 at 01:41:38PM +0200, Dietmar Maurer wrote: > You need to install package qemu-user-static which provides > the emulation toolkit. > > - emulate arm on x86 > - emulate x86 on arm > > Signed-off-by: Dietmar Maurer > --- > src/PVE/LXC/Setup.pm | 40

[pve-devel] [PATCH common] fix #1914: CLIFormatter: check also for existance of 'type'

2018-09-17 Thread Dominik Csapak
we sometimes define result => {} on an api call, so check that result->{type} is defined and guess the type if not Signed-off-by: Dominik Csapak --- src/PVE/CLIFormatter.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/CLIFormatter.pm b/src/PVE/CLIFormatter.pm

[pve-devel] applied: [PATCH v3 installer] Fix #1527: Use 'iso-codes' package country naming

2018-09-17 Thread Thomas Lamprecht
On 9/17/18 10:00 AM, Rhonda D'Vine wrote: > The iso 3166-1 information in the iso-codes package seems to be more > up to par than the one that was used from tzdata. Also remove > obsolete comments. > > Signed-off-by: Rhonda D'Vine > --- > country.pl | 20 +--- >

[pve-devel] applied: [PATCH ha-manager] document api result for ha resources

2018-09-17 Thread Thomas Lamprecht
On 9/17/18 10:33 AM, Dominik Csapak wrote: > Signed-off-by: Dominik Csapak > --- > src/PVE/API2/HA/Resources.pm | 39 ++- > 1 file changed, 38 insertions(+), 1 deletion(-) > > diff --git a/src/PVE/API2/HA/Resources.pm b/src/PVE/API2/HA/Resources.pm > index

[pve-devel] applied: [PATCH guest-common/container/qemu-server v2] improve snapshot rollback

2018-09-17 Thread Thomas Lamprecht
On 9/14/18 2:08 PM, Dominik Csapak wrote: > this series moves the qemu specific rollback code to qemu-server > (where it belongs), and fixes an odd behaviour in the snapshot logic regarding > machine type > > it does this by introducing a rollback hook which gets called twice during > rollback