Re: [pve-devel] [PATCH cluster v2 0/7] cleanup package and buildsys

2017-11-17 Thread Thomas Lamprecht
git-sendmail and (mostly) I messed up on sending, deleted a "F" from a "From" mail header in 5/7 and thus git sendmail did not want do send 5, 6, 7 I sended then the last 3 but forgot to adapt the start number, thus 1/3, 2/3, 3/3 should be: 5/7, 6/7, 7/7 sorry! On 11/17/2017 03:02 PM, Thomas Lamp

[pve-devel] [PATCH cluster v2 3/3] buildsys: autogen debug package and cleanup unecessary rules

2017-11-17 Thread Thomas Lamprecht
don't do manually what the deb helpers do automatically and better. Autogenerate the debug package, it includes now only the debugsymbols without effectively duplicating all executables and libraries. In the same step add a install file which installs our sysctl settings, this is done together as

[pve-devel] [PATCH cluster v2 2/3] buildsys: remove traces from unused rsyslog config

2017-11-17 Thread Thomas Lamprecht
does not get included in package since a long time, if ever, and has no purpose currently. Signed-off-by: Thomas Lamprecht --- debian/pve-rsyslog.conf | 3 --- debian/rules| 3 --- 2 files changed, 6 deletions(-) delete mode 100644 debian/pve-rsyslog.conf diff --git a/debian/pve-rs

[pve-devel] [PATCH cluster v2 1/3] buildsys: rules: remove outdated variables

2017-11-17 Thread Thomas Lamprecht
Signed-off-by: Thomas Lamprecht --- debian/rules | 5 - 1 file changed, 5 deletions(-) diff --git a/debian/rules b/debian/rules index bf69290..ed17ae4 100755 --- a/debian/rules +++ b/debian/rules @@ -4,11 +4,6 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -# This has

[pve-devel] [PATCH cluster v2 3/7] buildsys: remove outdated postrm

2017-11-17 Thread Thomas Lamprecht
we did nothing special here so just use the debhelper generated one Signed-off-by: Thomas Lamprecht --- debian/postrm | 39 --- 1 file changed, 39 deletions(-) delete mode 100644 debian/postrm diff --git a/debian/postrm b/debian/postrm deleted file mode 1006

[pve-devel] [PATCH cluster v2 4/7] buildsys: use autoreconf

2017-11-17 Thread Thomas Lamprecht
do not manually call autogen/configure just use dh_autoreconf Signed-off-by: Thomas Lamprecht --- Makefile | 1 - debian/rules | 8 +--- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 073ddc8..9b75e81 100644 --- a/Makefile +++ b/Makefile @@ -28,7

[pve-devel] [PATCH cluster v2 0/7] cleanup package and buildsys

2017-11-17 Thread Thomas Lamprecht
Remove old sysv init service files. Completely autogen debug symbol package. Cleanup packaging/buildsys in general changes v1 -> v2: * 1/7 is new: rm_conffile the obsolte made /etc/default/pve-cluster environment configuration file. Thomas Lamprecht (7): pve-cluster service: remove $DAEMON_OP

[pve-devel] [PATCH cluster v2 1/7] pve-cluster service: remove $DAEMON_OPTS and environment file

2017-11-17 Thread Thomas Lamprecht
"We use it to pass $DAEMON_OPTS variable to pmxcfs, which is empty per default. pmxcfs accepts following options at the moment: > Usage: > pmxcfs [OPTION...] > > Help Options: > -h, --help Show help options > > Application Options: > -d, --debug Turn on debug messages >

[pve-devel] [PATCH cluster v2 2/7] remove unused sysv init.d service file

2017-11-17 Thread Thomas Lamprecht
Signed-off-by: Thomas Lamprecht --- debian/init.d | 145 - debian/pve-cluster.default | 10 debian/rules | 2 - 3 files changed, 157 deletions(-) delete mode 100644 debian/init.d delete mode 100644 debian/pve-cluster

[pve-devel] [PATCH docs] Add section Ceph CRUSH and device classes for pool assignment

2017-11-17 Thread Alwin Antreich
Signed-off-by: Alwin Antreich --- pveceph.adoc | 71 1 file changed, 71 insertions(+) diff --git a/pveceph.adoc b/pveceph.adoc index c5eec4f..f152052 100644 --- a/pveceph.adoc +++ b/pveceph.adoc @@ -284,6 +284,77 @@ operation footnote:

[pve-devel] [PATCH common] daemon: fix send termination to all workers on exit

2017-11-17 Thread Thomas Lamprecht
The hash slice did not work as intented here, it only return the keys from the last elemend defined in the slice, thus not all workers got a TERM. Signed-off-by: Thomas Lamprecht --- src/PVE/Daemon.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/Daemon.pm b/src/PVE

[pve-devel] [PATCH zsync] Fix: You can now use the pool as replication source.

2017-11-17 Thread Wolfgang Link
In previous version you need a dataset as replication source. --- pve-zsync | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pve-zsync b/pve-zsync index b3241ff..4020ba6 100644 --- a/pve-zsync +++ b/pve-zsync @@ -860,7 +860,8 @@ sub snapshot_destroy { if ($d

Re: [pve-devel] smartmontools 6.6 is available

2017-11-17 Thread Thomas Lamprecht
On 11/09/2017 11:59 PM, Nils Privat wrote: > Finally smartmontools 6.6 is out. Just wanted to let you know in case you > want to update smartmontools in proxmox. In PVE 5, we currently use the package from Debian. AFAIS, mostly the device database update would be interesting, or did you see a good

[pve-devel] applied: [PATCH] make ssh connections transparent

2017-11-17 Thread Wolfgang Bumiller
applied all to master & stable-4 On Fri, Nov 17, 2017 at 10:22:52AM +0100, Dominik Csapak wrote: > when connecting to a vm/ct/host on another host, we used ssh but > left the escape character default, which means the ssh > connection was not fully transparent > > [PATCH manager] make ssh connecti

[pve-devel] [PATCH qemu-server] make ssh connection transparent

2017-11-17 Thread Dominik Csapak
do not use an escape character for vncproxy Signed-off-by: Dominik Csapak --- PVE/API2/Qemu.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/API2/Qemu.pm b/PVE/API2/Qemu.pm index c3f1004..5f9d105 100644 --- a/PVE/API2/Qemu.pm +++ b/PVE/API2/Qemu.pm @@ -1410,7 +1410,7 @@

[pve-devel] [PATCH] make ssh connections transparent

2017-11-17 Thread Dominik Csapak
when connecting to a vm/ct/host on another host, we used ssh but left the escape character default, which means the ssh connection was not fully transparent [PATCH manager] make ssh connection transparent [PATCH container] make ssh connection transparent [PATCH qemu-server] make ssh connection tra

[pve-devel] [PATCH container] make ssh connection transparent

2017-11-17 Thread Dominik Csapak
do not use an escape character for ssh connections for vncterm Signed-off-by: Dominik Csapak --- src/PVE/API2/LXC.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/API2/LXC.pm b/src/PVE/API2/LXC.pm index 0397224..561d05e 100644 --- a/src/PVE/API2/LXC.pm +++ b/src/PVE

[pve-devel] [PATCH manager] make ssh connection transparent

2017-11-17 Thread Dominik Csapak
do not use an escape character for the host shell Signed-off-by: Dominik Csapak --- PVE/API2/Nodes.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/API2/Nodes.pm b/PVE/API2/Nodes.pm index b7210d4d..2cf44ae0 100644 --- a/PVE/API2/Nodes.pm +++ b/PVE/API2/Nodes.pm @@ -683,