[pve-devel] [PATCH manager] fix #1732: actually post values in IScsiEdit

2018-04-19 Thread Dominik Csapak
this prevented creating/editing an iscsi storage Signed-off-by: Dominik Csapak --- www/manager6/storage/IScsiEdit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/manager6/storage/IScsiEdit.js b/www/manager6/storage/IScsiEdit.js index c7e8ecaf..33a198dd 100644 --- a/ww

Re: [pve-devel] [PATCH librados2-perl] Convert to dpkg-buildpackage

2018-04-19 Thread Fabian Grünbichler
thanks for this! one of the leftover packages which we haven't converted so far (for lack of recent changes). now that Alwin did some changes and is planning to do some more, it's probably a good idea to convert it. some comments inline (your patch also only applies when ignoring whitespace change

Re: [pve-devel] [PATCH librados2-perl] Convert to dpkg-buildpackage

2018-04-19 Thread Rene Jochum
On 2018-04-19 10:16, Fabian Grünbichler wrote: > some comments inline (your patch also only applies when ignoring > whitespace changes!) Hi Fabian, thank you for looking into it! Can you give me a tip on making patches that apply without ignoring white space changes? Will implement all the give

[pve-devel] [PATCH librados2-perl] Convert to dpkg-buildpackage

2018-04-19 Thread Rene Jochum
Thanks again, comments inline. On 2018-04-19 10:16, Fabian Grünbichler wrote: >> @@ -52,23 +54,27 @@ install: PVE/RADOS.pm RADOS.so >> .PHONY: deb ${DEB} >> deb: ${DEB} >> ${DEB}: >> -rm -rf debian >> -mkdir debian >> -make DESTDIR=${CURDIR}/debian install >> -install -d -m 0755

Re: [pve-devel] [PATCH librados2-perl] Convert to dpkg-buildpackage

2018-04-19 Thread Fabian Grünbichler
On Thu, Apr 19, 2018 at 11:02:44AM +0200, Rene Jochum wrote: > On 2018-04-19 10:16, Fabian Grünbichler wrote: > > some comments inline (your patch also only applies when ignoring > > whitespace changes!) > > > Hi Fabian, > > thank you for looking into it! Can you give me a tip on making patches

Re: [pve-devel] [PATCH librados2-perl] Convert to dpkg-buildpackage

2018-04-19 Thread Fabian Grünbichler
On Thu, Apr 19, 2018 at 11:31:08AM +0200, Rene Jochum wrote: > Thanks again, comments inline. > > On 2018-04-19 10:16, Fabian Grünbichler wrote: > >> @@ -52,23 +54,27 @@ install: PVE/RADOS.pm RADOS.so > >> .PHONY: deb ${DEB} > >> deb: ${DEB} > >> ${DEB}: > >> - rm -rf debian > >> - mkdir debi

[pve-devel] [PATCH librados2-perl v2] Convert to dpkg-buildpackage so we get a .changes file

2018-04-19 Thread René Jochum
Also fixes a minor spelling error in changelog.Debian and extends the .gitignore to ignore build files. Signed-off-by: René Jochum --- .gitignore | 7 +++ Makefile | 29 ++-- changelog.Debian => debian/changelog |

[pve-devel] [PATCH v2 common 3/4] acme: add challenge plugins

2018-04-19 Thread Fabian Grünbichler
Signed-off-by: Fabian Grünbichler --- src/PVE/ACME/Challenge.pm | 22 ++ src/PVE/ACME/StandAlone.pm | 74 ++ 2 files changed, 96 insertions(+) create mode 100644 src/PVE/ACME/Challenge.pm create mode 100644 src/PVE/ACME/StandAlone.pm dif

[pve-devel] [PATCH v2 manager 1/5] add CertHelpers utility

2018-04-19 Thread Fabian Grünbichler
PVE-specific certificate helper functions Signed-off-by: Fabian Grünbichler --- PVE/Makefile | 1 + PVE/CertHelpers.pm | 107 + 2 files changed, 108 insertions(+) create mode 100644 PVE/CertHelpers.pm diff --git a/PVE/Makefile b/PVE/M

[pve-devel] [PATCH v2 manager 4/5] add ACME certificate API endpoints

2018-04-19 Thread Fabian Grünbichler
for creating/ordering a new certificate and renewing respectively revoking an existing one. Signed-off-by: Fabian Grünbichler --- PVE/API2/Makefile | 1 + PVE/API2/ACME.pm | 325 ++ 2 files changed, 326 insertions(+) create mode 100644 PVE/

[pve-devel] [PATCH v2 common 4/4] build: install ACME files

2018-04-19 Thread Fabian Grünbichler
Signed-off-by: Fabian Grünbichler --- src/Makefile | 4 1 file changed, 4 insertions(+) diff --git a/src/Makefile b/src/Makefile index c81991d..17a794a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -7,6 +7,9 @@ MAN1DIR=${MANDIR}/man1/ PERLDIR=${PREFIX}/share/perl5 LIB_SOURCES = \ +

[pve-devel] [PATCH cluster/common/manager v2 0/10] ACME library and certificate management

2018-04-19 Thread Fabian Grünbichler
this patch series is implementing the following features: - certificate utility module (pve-common) - ACME v9 / Let's Encrypt v2 API client library (pve-common) - PVE specific Certificate helper utility (pve-manager) - new per-node configuration file in /etc/pve/nodes/FOO/config and API for manag

[pve-devel] [PATCH v2 common 1/4] add Certificate helper

2018-04-19 Thread Fabian Grünbichler
general purpose certificate related helper functions Signed-off-by: Fabian Grünbichler --- src/Makefile | 1 + src/PVE/Certificate.pm | 396 + 2 files changed, 397 insertions(+) create mode 100644 src/PVE/Certificate.pm diff --git a/s

[pve-devel] [PATCH v2 manager 2/5] add node configuration file and API

2018-04-19 Thread Fabian Grünbichler
this currently only contains a description and the node-specific ACME configuration, but I am sure we can find other goodies to put there. Signed-off-by: Fabian Grünbichler --- PVE/API2/Makefile | 1 + PVE/Makefile | 1 + PVE/API2/NodeConfig.pm | 101

[pve-devel] [PATCH v2 cluster] cluster: add cfs_lock_acme

2018-04-19 Thread Fabian Grünbichler
to lock an ACME account config file Signed-off-by: Fabian Grünbichler --- data/PVE/Cluster.pm | 8 1 file changed, 8 insertions(+) diff --git a/data/PVE/Cluster.pm b/data/PVE/Cluster.pm index ef7a541..d12c244 100644 --- a/data/PVE/Cluster.pm +++ b/data/PVE/Cluster.pm @@ -960,6 +960,14

[pve-devel] [PATCH v2 manager 5/5] add certificates API endpoints

2018-04-19 Thread Fabian Grünbichler
to allow retrieval of certificate information, and uploading or removing of custom certificate files. Signed-off-by: Fabian Grünbichler --- PVE/API2/Makefile| 1 + PVE/API2/Certificates.pm | 205 +++ PVE/API2/Nodes.pm| 8 ++ 3 files

[pve-devel] VDI solution...

2018-04-19 Thread Gilberto Nunes
Hi there... Is there any plan to add some VDI solution, like Ulteo OVD, VMWare Horizons, something like that. I thing this would bring a big differential to Proxmox. Thanks --- Gilberto Nunes Ferreira (47) 3025-5907 (47) 99676-7530 - Whatsapp / Telegram Skype: gilberto.nunes36 _

[pve-devel] [PATCH v2 manager 3/5] add ACME account API endpoints

2018-04-19 Thread Fabian Grünbichler
for registering, updating, refreshing and deactiving a PVE-managed ACME account, as well as for retrieving the (optional, but required if available) terms of service of the ACME API provider / CA. Signed-off-by: Fabian Grünbichler --- PVE/API2/Makefile | 1 + PVE/API2/ACMEAccount.pm | 34

[pve-devel] [PATCH v2 common 2/4] acme: add ACME library

2018-04-19 Thread Fabian Grünbichler
this implements those parts of draft-ietf-acme-acme-09 which are needed to use Let's Encrypt's v2 API. (based on an internal implement for the Let's Encrypt v1 API) Co-Authored-By: Wolfgang Bumiller Signed-off-by: Fabian Grünbichler --- src/PVE/ACME.pm | 531

[pve-devel] applied: [PATCH manager] fix #1732: actually post values in IScsiEdit

2018-04-19 Thread Fabian Grünbichler
___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] VDI solution...

2018-04-19 Thread Gilberto Nunes
You guys could integrate Apache Guacamole to Proxmox VE, perhaps. --- Gilberto Nunes Ferreira (47) 3025-5907 (47) 99676-7530 - Whatsapp / Telegram Skype: gilberto.nunes36 2018-04-19 9:33 GMT-03:00 Gilberto Nunes : > Hi there... > > Is there any plan to add some VDI solution, like Ulteo OVD,

[pve-devel] Add a shortcut into Web Interface

2018-04-19 Thread Gilberto Nunes
Hi there How can I add a shortcut to an external link, into web interface? Someone can point me the direction to do that?? Thanks a lot --- Gilberto Nunes Ferreira (47) 3025-5907 (47) 99676-7530 - Whatsapp / Telegram Skype: gilberto.nunes36 ___ pve-d

Re: [pve-devel] VDI solution...

2018-04-19 Thread Dietmar Maurer
> You guys could integrate Apache Guacamole to Proxmox VE, perhaps. You can install an run that inside any VM. So I don't really understand what we should integrate? ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/ma

Re: [pve-devel] VDI solution...

2018-04-19 Thread Alexandre DERUMIER
Hi, my 2 cents: For me, vdi are more spice solution. Something like you have a customer portal, user click on create a new vdi, It's spawing a new vm (linked clone from a template). Spice is launching (maybe better with a spice html5 implementation) and when user close the session, the vm is

Re: [pve-devel] Add a shortcut into Web Interface

2018-04-19 Thread Dominik Csapak
On 04/20/2018 02:59 AM, Gilberto Nunes wrote: Hi there How can I add a shortcut to an external link, into web interface? Someone can point me the direction to do that?? Thanks a lot hi, currently there is no such feature, what exactly do you want? (though you can add arbitrary text to a vm/

[pve-devel] iproute2 package for kernel 4.15 ?

2018-04-19 Thread Alexandre DERUMIER
Hi, could it be possible to add iproute2 4.15 to proxmox repository ? I'm currently testing a new feature with vxlan + vlan aware bridge, to map vlan->vxlan with only 1 vtep device. #bridge link set dev vxlan0 vlan_tunnel on #bridge vlan add dev vxlan0 vid 1000-1001 tunnel_info id 2000-2001 B