[pve-devel] [PATCH] Added patch for vvfat's file.label option

2015-06-18 Thread Wolfgang Bumiller
--- debian/patches/0001-vvfat-add-a-label-option.patch | 119 + debian/patches/series | 1 + 2 files changed, 120 insertions(+) create mode 100644 debian/patches/0001-vvfat-add-a-label-option.patch diff --git

Re: [pve-devel] RFC: qemu-server : add cloudinit support

2015-06-18 Thread Wolfgang Bumiller
Hey Alexandre, I don't know if you're already tinkering with rsyncing the iso images, and wanted to let you know that I'm currently experimenting with qemu's vvfat drive option. According to the source it should work across migrations as long as it's used read-only. I tested migrating in a virtual

Re: [pve-devel] [PATCH] use jemalloc as memory allocator

2015-06-18 Thread Dietmar Maurer
can we directly link the library instead of using LD_PRELOAD? On 06/17/2015 09:31 AM, Alexandre Derumier wrote: Signed-off-by: Alexandre Derumier aderum...@odiso.com --- PVE/QemuServer.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index

Re: [pve-devel] [PATCH] Added patch for vvfat's file.label option

2015-06-18 Thread Dietmar Maurer
applied. ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] [PATCH] remove tcmalloc default memory allocator

2015-06-18 Thread Dietmar Maurer
applied, but without adding the libjemalloc1 dependency. ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] [PATCH] pvecm use of uninitialized value $ARGV[0]

2015-06-18 Thread Alen Grizonic
Just a small bug fix for the pvecm script which did not verify the argument existence during the $ARGV[0] check (when argument not used). Script run error - Use of uninitialized value $ARGV[0] in string ne at /usr/bin/pvecm line 26. Signed-off-by: Alen Grizonic a.grizo...@proxmox.com ---

Re: [pve-devel] RFC: qemu-server : add cloudinit support

2015-06-18 Thread Alexandre DERUMIER
also cloud-init windows seem to support vfat configdrive Add support for VFAT ConfigDrive https://github.com/stackforge/cloudbase-init/commit/2026ee8e0f766f91cf62904ceca3de7382eea787 and cloud-init documentation say: http://cloudinit.readthedocs.org/en/latest/topics/datasources.html The

Re: [pve-devel] [PATCH] Force Internet Explorer to interpret pages in IE10 compatibility modus

2015-06-18 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] [PATCH] pveceph script double declaration

2015-06-18 Thread Alen Grizonic
Found a double variable declaration that needs to be removed. diff --git a/bin/pveceph b/bin/pveceph index a7467d9..227eaa1 100755 --- a/bin/pveceph +++ b/bin/pveceph @@ -24,7 +24,6 @@ use PVE::CLIHandler; use base qw(PVE::CLIHandler); -my $cmddef; my $nodename = PVE::INotify::nodename();