From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
src/PVE/API2/LXC.pm | 9 +
src/PVE/LXC.pm | 6 +-
2 files changed, 14 insertions(+), 1 deletion(-)
diff --git a/src/PVE/API2/LXC.pm b/src/PVE/API2/LXC.pm
index d9ad5ff..9cf22de 100644
--- a/src/PVE/API2/LXC.pm
+++ b/
From: Michael Rasmussen
Enable FreeNAS as a valid storage plugin for LXC
Changes since v2:
* Fix bug in FreeNASPlugin.pm which prevented online resize.
This reverts changes in v2
* Repatch to comply to Proxmox git workflow
Changes since v1:
* Disable online resize
Michael Ras
From: Michael Rasmussen
The special handling is not needed since a fix is provided
in FreeNAS.pm
Signed-off-by: Michael Rasmussen
---
src/PVE/API2/LXC.pm | 10 ++
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/src/PVE/API2/LXC.pm b/src/PVE/API2/LXC.pm
index d333bea..3ea7
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
src/PVE/API2/LXC.pm | 22 ++
1 file changed, 14 insertions(+), 8 deletions(-)
diff --git a/src/PVE/API2/LXC.pm b/src/PVE/API2/LXC.pm
index 9cf22de..d333bea 100644
--- a/src/PVE/API2/LXC.pm
+++ b/src/PVE/API2/LXC.p
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 56
1 file changed, 56 insertions(+)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index f954dc8..bfd3ee8 100644
--- a/PVE/Storage
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 72 +++-
1 file changed, 71 insertions(+), 1 deletion(-)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index 9c0136d..f954dc8 100644
--
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage.pm| 2 ++
PVE/Storage/Makefile | 2 +-
PVE/Storage/Plugin.pm | 2 +-
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/PVE/Storage.pm b/PVE/Storage.pm
index ee2295a..f33249f 100755
--- a/PVE/Storage.p
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 119 +++
1 file changed, 119 insertions(+)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index a50a2f6..e930cea 100644
--- a/PVE/Storag
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 31 ++-
1 file changed, 22 insertions(+), 9 deletions(-)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index 3a18a31..91a1b0c 100644
--- a/PVE/Stor
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 415 +++
1 file changed, 415 insertions(+)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index cf33e68..a50a2f6 100644
--- a/PVE/Storag
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 66
1 file changed, 66 insertions(+)
create mode 100644 PVE/Storage/FreeNASPlugin.pm
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.p
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 27 +++
1 file changed, 27 insertions(+)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index 943eeab..9c0136d 100644
--- a/PVE/Storage/FreeNASPlugin.pm
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 31 +++
1 file changed, 31 insertions(+)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index 91a1b0c..943eeab 100644
--- a/PVE/Storage/FreeNASPlugi
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 597 ++-
1 file changed, 589 insertions(+), 8 deletions(-)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index e930cea..3a18a31 100644
From: Michael Rasmussen
This patch series adds a storage plugin for FreeNAS using the FreeNAS API.
The plugin supports both Qemu and LXC VM. Features supported, see below:
VM CT
create YES YES
delete YES YES
resize
From: Michael Rasmussen
snapshot backup of CT broke general snapshot handling.
Handle snapshot creation and deletion properly.
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 1570 +-
1 file changed, 782 insertions(+), 788 deletions(-
From: Michael Rasmussen
Changes since v5:
* if ! to unless
* all helper methods now private
* remove unused includes
* remove unused code
* more descriptive variable names
* change api timeout to be in sync with the PVE API
* add loop over limit until empty resultset is returned
* fix API version
From: Michael Rasmussen
(Resending, Diregard previous)
This patch series adds a storage plugin for FreeNAS using the FreeNAS API.
The plugin supports both Qemu and LXC VM. Features supported, see below:
VM CT
create YES YES
delete
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index c438519..0f2a56d 100644
--- a/PVE/Storage/FreeNASPlugin.pm
+++ b/PV
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 7 ++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index 771061e..c438519 100644
--- a/PVE/Storage/FreeNASPlugin.pm
+++ b/
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 129 +--
1 file changed, 74 insertions(+), 55 deletions(-)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index 0f2a56d..fee3d27 100644
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage.pm |2 +
PVE/Storage/FreeNASPlugin.pm | 1289 ++
PVE/Storage/Makefile |2 +-
PVE/Storage/Plugin.pm|2 +-
4 files changed, 1293 insertions(+)
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 129 +--
1 file changed, 74 insertions(+), 55 deletions(-)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index 0f2a56d..fee3d27 100644
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index c438519..0f2a56d 100644
--- a/PVE/Storage/FreeNASPlugin.pm
+++ b/PV
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 7 ++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index 771061e..c438519 100644
--- a/PVE/Storage/FreeNASPlugin.pm
+++ b/
From: Michael Rasmussen
Changes since v5:
* if ! to unless
* all helper methods now private
* remove unused includes
* remove unused code
* more descriptive variable names
* change api timeout to be in sync with the PVE API
* add loop over limit until empty resultset is returned
* fix API version
From: Michael Rasmussen
fixes
TODO
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 1011 ++
1 file changed, 533 insertions(+), 478 deletions(-)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index 9fe64d6..
From: Michael Rasmussen
This patch series adds a storage plugin for FreeNAS using the FreeNAS API.
The plugin supports both Qemu and LXC VM. Features supported, see below:
VM CT
create YES YES
delete YES YES
resize
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage.pm |2 +
PVE/Storage/FreeNASPlugin.pm | 1289 ++
PVE/Storage/Makefile |2 +-
PVE/Storage/Plugin.pm|2 +-
4 files changed, 1293 insertions(+)
From: Michael Rasmussen
snapshot backup of CT broke general snapshot handling.
Handle snapshot creation and deletion properly.
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 1570 +-
1 file changed, 782 insertions(+), 788 deletions(-
From: Michael Rasmussen
fixes
TODO
Signed-off-by: Michael Rasmussen
---
PVE/Storage/FreeNASPlugin.pm | 1011 ++
1 file changed, 533 insertions(+), 478 deletions(-)
diff --git a/PVE/Storage/FreeNASPlugin.pm b/PVE/Storage/FreeNASPlugin.pm
index 9fe64d6..
From: Michael Rasmussen
This is a patch to be added to v5 of the patch series.
fixes
# if ! to unless
# all helper methods now private
# remove unused includes
# remove unused code
# more descriptive variable names
# change api timeout to be in sync with the PVE API
# add loop over limit until e
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
src/PVE/API2/LXC.pm | 22 ++
1 file changed, 14 insertions(+), 8 deletions(-)
diff --git a/src/PVE/API2/LXC.pm b/src/PVE/API2/LXC.pm
index 9cf22de..d333bea 100644
--- a/src/PVE/API2/LXC.pm
+++ b/src/PVE/API2/LXC.p
From: Michael Rasmussen
The is a fix in response to comments from Fabian.
Pass value of $running to volume_resize if storage id is freenas
Michael Rasmussen (1):
Correctly bail when online resize for CT is requested.
src/PVE/API2/LXC.pm | 22 ++-
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/LunCmd/Istgt.pm | 11 ++-
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/PVE/Storage/LunCmd/Istgt.pm b/PVE/Storage/LunCmd/Istgt.pm
index c17d1c8..8594f77 100644
--- a/PVE/Storage/LunCmd/Istgt.pm
+++
Fix bug as found is this thread:
http://forum.proxmox.com/threads/20070-Proxmox-VE-3-3-and-Freenas-9-2-7-ZFS-via-ISCSI
This mail was virus scanned and spam checked before delivery.
This mail is also DKIM signed. See header dkim-signature.
___
p
This patch enables builders to use any gcc version if desired.
make without options will require and check for gcc-4.7.2
make with option CC will use this version
Default: make
Alternative: make CC=gcc-4.8
This mail was virus scanned and spam checked before delivery.
This mail is also DKI
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
Makefile | 4
1 file changed, 4 insertions(+)
diff --git a/Makefile b/Makefile
index 3e2c1bc..823d842 100644
--- a/Makefile
+++ b/Makefile
@@ -70,7 +70,11 @@ PVE_DEB=${PVEPKG}_${RELEASE}-${PKGREL}_all.deb
all: check_gcc ${DST_D
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 3e2c1bc..f359e05 100644
--- a/Makefile
+++ b/Makefile
@@ -70,7 +70,7 @@ PVE_DEB=${PVEPKG}_${RELEASE}-${PKGREL}_all.deb
all: check_
- Relax gcc check in Makefile so any gcc version 4.7 can be used.
Debian Sid has version 4.7.4
- Honor CC environment so compiling with non default gcc is
possible without changing symliks. Example:
make CC=gcc-4.7
This mail was virus scanned and spam checked before delivery.
This mai
This patch must be applied after [PATCH] Extend ZFS GUI to include new features
This mail was virus scanned and spam checked before delivery.
This mail is also DKIM signed. See header dkim-signature.
___
pve-devel mailing list
pve-devel@pve.proxm
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/storage/ZFSEdit.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/www/manager/storage/ZFSEdit.js b/www/manager/storage/ZFSEdit.js
index 8581dc4..0904675 100644
--- a/www/manager/storage/ZFSEdit.js
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/storage/ZFSEdit.js | 29 +
1 file changed, 29 insertions(+)
diff --git a/www/manager/storage/ZFSEdit.js b/www/manager/storage/ZFSEdit.js
index 2a5a042..8581dc4 100644
--- a/www/manager/storage/
New patch made from a clean git clone.
This mail was virus scanned and spam checked before delivery.
This mail is also DKIM signed. See header dkim-signature.
___
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com/cgi-bin/mai
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/storage/ZFSEdit.js | 34 --
1 file changed, 32 insertions(+), 2 deletions(-)
diff --git a/www/manager/storage/ZFSEdit.js b/www/manager/storage/ZFSEdit.js
index dc6b906..c74eb50 100644
--- a
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/QemuServer.pm | 27 +--
1 file changed, 25 insertions(+), 2 deletions(-)
diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm
index 2cb2d95..c4ec8fa 100644
--- a/PVE/QemuServer.pm
+++ b/PVE/QemuServer.pm
@@
Hi Alexandré,
Can you please test this patch on Nexenta?
___
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/LunCmd/Comstar.pm | 13 -
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/PVE/Storage/LunCmd/Comstar.pm b/PVE/Storage/LunCmd/Comstar.pm
index 45ad6a5..3507f94 100644
--- a/PVE/Storage/LunCmd/Comst
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/storage/ZFSEdit.js | 242 -
1 file changed, 121 insertions(+), 121 deletions(-)
diff --git a/www/manager/storage/ZFSEdit.js b/www/manager/storage/ZFSEdit.js
index 2a5a042..5dd5329 1
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/storage/ZFSEdit.js | 24 +++-
1 file changed, 19 insertions(+), 5 deletions(-)
diff --git a/www/manager/storage/ZFSEdit.js b/www/manager/storage/ZFSEdit.js
index 5dd5329..dc6b906 100644
--- a/www/manag
Disregard last patch.
Patches fix indentation and change text field for iscsi provider input
to use a combobox instead since user in its present state would need to
know in advance the available iscsi providers which proxmox supports.
Instead show the available providers for the user in a drop-dow
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/storage/ZFSEdit.js | 242 -
1 file changed, 121 insertions(+), 121 deletions(-)
diff --git a/www/manager/storage/ZFSEdit.js b/www/manager/storage/ZFSEdit.js
index 2a5a042..5dd5329 1
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/storage/ZFSEdit.js | 256 ++---
1 file changed, 135 insertions(+), 121 deletions(-)
diff --git a/www/manager/storage/ZFSEdit.js b/www/manager/storage/ZFSEdit.js
index 2a5a042..dc6b906 1
User would in its present state need to know in advance the available
iscsi providers which proxmox support. Instead show the available
providers for the user in a drop-down box.
___
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/LunCmd/Comstar.pm | 141 +++
PVE/Storage/LunCmd/Iet.pm | 7 +-
PVE/Storage/LunCmd/Istgt.pm | 861 +-
PVE/Storage/ZFSPlugin.pm | 335
4 files changed
This patch implements support for cluster wide usage of a single
ssh key. The key is stored in /etc/pve/priv/zfs and distributed
through pmxcfs. One key is create for each storage and used for
all pools and targets on the storage.
Naming convention: _id_rsa
Patch to correct indentation to use 4 spaces consistently.
___
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/LunCmd/Iet.pm | 710 +++---
1 file changed, 355 insertions(+), 355 deletions(-)
diff --git a/PVE/Storage/LunCmd/Iet.pm b/PVE/Storage/LunCmd/Iet.pm
index 654ddcf..e378b9f 100644
---
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/LunCmd/Istgt.pm | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/PVE/Storage/LunCmd/Istgt.pm b/PVE/Storage/LunCmd/Istgt.pm
index 13d57fa..5c05a3d 100644
--- a/PVE/Storage/LunCmd/Istgt.pm
+++ b/PVE/Stor
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/LunCmd/Iet.pm | 477 ++
PVE/Storage/ZFSPlugin.pm | 7 +-
2 files changed, 483 insertions(+), 1 deletion(-)
create mode 100644 PVE/Storage/LunCmd/Iet.pm
diff --git a/PVE/Stor
These two patches ends the circle of adding ZFS support for Proxmox.
Patch 1: Some code clean up in Istgt.pm
Patch 2: Iet.pm which contains support for ZFS on Linux and the changes in
ZFSPlugin.pm required to use thus new feature.
___
pve-devel mailing l
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/LunCmd/Istgt.pm | 580
1 file changed, 580 insertions(+)
create mode 100644 PVE/Storage/LunCmd/Istgt.pm
diff --git a/PVE/Storage/LunCmd/Istgt.pm b/PVE/Storage/LunCmd/Istgt.pm
The following patches adds support for istgt which is used in *BSD
to provide iSCSI.
To be able to support more than Comstar a refactoring of the code
was necessary. Refactoring has moved any reference to LUN commands
to separate modules created in a subfolder in Storage (LunCmd).
___
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/LunCmd/Comstar.pm | 101 ++
1 file changed, 101 insertions(+)
create mode 100644 PVE/Storage/LunCmd/Comstar.pm
diff --git a/PVE/Storage/LunCmd/Comstar.pm b/PVE/Storage/LunCmd/Comst
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/ZFSPlugin.pm | 151 +--
1 file changed, 80 insertions(+), 71 deletions(-)
diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm
index a50f7cb..7bc9d49 100644
--- a/PV
Attached patch fixes a bug in the pool size calculation.
___
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/ZFSPlugin.pm | 10 +-
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm
index efcdd04..a50f7cb 100644
--- a/PVE/Storage/ZFSPlugin.pm
+++ b/PVE/Storage
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/Makefile | 1 +
www/manager/Utils.js | 2 ++
www/manager/dc/StorageView.js | 11 +++
www/manager/qemu/Clone.js | 3 ++-
www/manager/qemu/HDEdit.js| 3 ++-
5 files changed, 18 insertion
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/storage/ZFSEdit.js | 145 +
1 file changed, 145 insertions(+)
create mode 100644 www/manager/storage/ZFSEdit.js
diff --git a/www/manager/storage/ZFSEdit.js b/www/manager/storage/ZF
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/dc/StorageView.js | 2 +-
www/manager/storage/ZFSEdit.js | 16
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/www/manager/dc/StorageView.js b/www/manager/dc/StorageView.js
index be5f81a..
- Removed all references to sudo, chap, and password.
- Use Utils to format storage name in gui panel
- Move target name to line for itself since names can be long
___
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com/cgi-bin/mailma
- Removed all references to sudo, chap, and password.
- Use Utils to format storage name in gui panel
- Move target name to line for itself since names can be long
___
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com/cgi-bin/mailma
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/dc/StorageView.js | 2 +-
www/manager/storage/ZFSEdit.js | 16
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/www/manager/dc/StorageView.js b/www/manager/dc/StorageView.js
index be5f81a..
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/API2/OpenVZ.pm| 6 --
www/manager/Makefile | 1 +
www/manager/Utils.js | 2 ++
www/manager/dc/StorageView.js | 11 +++
www/manager/qemu/Clone.js | 3 ++-
www/manager/qemu/HDEdit.js
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/storage/ZFSEdit.js | 145 +
1 file changed, 145 insertions(+)
create mode 100644 www/manager/storage/ZFSEdit.js
diff --git a/www/manager/storage/ZFSEdit.js b/www/manager/storage/ZF
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/API2/OpenVZ.pm| 6 --
www/manager/Makefile | 1 +
www/manager/Utils.js | 2 ++
www/manager/dc/StorageView.js | 11 +++
www/manager/qemu/Clone.js | 3 ++-
www/manager/qemu/HDEdit.js
- Removed all references to sudo, chap, and password.
- Use Utils to format storage name in gui panel
- Move target name to line for itself since names can be long
___
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com/cgi-bin/mailma
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/storage/ZFSEdit.js | 145 +
1 file changed, 145 insertions(+)
create mode 100644 www/manager/storage/ZFSEdit.js
diff --git a/www/manager/storage/ZFSEdit.js b/www/manager/storage/ZF
Removed all reference to sudo, chap, and password
___
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/ZFSPlugin.pm | 22 +-
1 file changed, 1 insertion(+), 21 deletions(-)
diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm
index c8a47d2..c25d5ec 100644
--- a/PVE/Storage/ZFSPlugin.pm
+++ b
From: Michael Rasmussen
The fix solves timeout problems in pve GUI since refactored code runs 5
times faster than original code.
Signed-off-by: Michael Rasmussen
---
PVE/Storage/ZFSPlugin.pm | 70
1 file changed, 35 insertions(+), 35 deletions(-
From: Michael Rasmussen
The problem displays its ugly face when the content tab is invoked in
the gui. This
request calls to plugin method 'list_images' which will produce a list
of all images
available on the storage server. After the gui receives this list it
will call the
plugins method 'path'
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/ZFSPlugin.pm | 151 ++-
1 file changed, 57 insertions(+), 94 deletions(-)
diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm
index e2404e4..60858c9 100644
--- a/PV
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/ZFSPlugin.pm | 12 +---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm
index 0ec6632..a562635 100644
--- a/PVE/Storage/ZFSPlugin.pm
+++ b/PVE/Stora
These patches provides the needed changes to apply the ZFS plugin.
___
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage.pm | 2 +
PVE/Storage/Makefile | 2 +-
PVE/Storage/Plugin.pm| 2 +-
PVE/Storage/ZFSPlugin.pm | 646 +++
4 files changed, 650 insertions(+), 2 deletions(-)
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/ZFSPlugin.pm | 14 ++
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm
index 909f71f..b02a87a 100644
--- a/PVE/Storage/ZFSPlugin.pm
+++ b/PVE/St
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/ZFSPlugin.pm | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm
index 0addd0b..e39b965 100644
--- a/PVE/Storage/ZFSPlugin.pm
+++ b/PVE/Storage/ZF
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/ZFSPlugin.pm | 16 ++--
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm
index a562635..c5bf8c4 100644
--- a/PVE/Storage/ZFSPlugin.pm
+++ b/PVE/
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/ZFSPlugin.pm | 5 -
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm
index e39b965..ff32b97 100644
--- a/PVE/Storage/ZFSPlugin.pm
+++ b/PVE/Storage/ZFSPlu
This patch provides the needed changes to apply the ZFS plugin.
___
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/Makefile | 1 +
www/manager/Utils.js | 2 +
www/manager/dc/StorageView.js | 11 +++
www/manager/qemu/Clone.js | 3 +-
www/manager/qemu/HDEdit.js | 3 +-
www/manager/storage/ZFSEdit.js
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
www/manager/Makefile | 1 +
www/manager/Utils.js | 2 +
www/manager/dc/StorageView.js | 11 +++
www/manager/qemu/Clone.js | 3 +-
www/manager/qemu/HDEdit.js | 3 +-
www/manager/storage/ZFSEdit.js
This newest version fixes a serious bug cause my asynchronious AJAX calls from
web gui.
The problem displays its ugly face when the content tab is invoked in the gui.
This request calls to plugin method 'list_images' which will produce a list of
all images available on the storage server. After th
From: Michael Rasmussen
The problem displays its ugly face when the content tab is invoked in
the gui. This
request calls to plugin method 'list_images' which will produce a list
of all images
available on the storage server. After the gui receives this list it
will call the
plugins method 'path'
From: Michael Rasmussen
The fix solves timeout problems in pve GUI since refactored code runs 5
times faster than original code.
Signed-off-by: Michael Rasmussen
---
PVE/Storage/ZFSPlugin.pm | 70
1 file changed, 35 insertions(+), 35 deletions(-
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/ZFSPlugin.pm | 14 ++
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm
index 909f71f..b02a87a 100644
--- a/PVE/Storage/ZFSPlugin.pm
+++ b/PVE/St
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage.pm | 2 +
PVE/Storage/Makefile | 2 +-
PVE/Storage/Plugin.pm| 2 +-
PVE/Storage/ZFSPlugin.pm | 646 +++
4 files changed, 650 insertions(+), 2 deletions(-)
This newest version fixes a serious bug cause my asynchronious AJAX calls from
web gui.
The problem displays its ugly face when the content tab is invoked in the gui.
This request calls to plugin method 'list_images' which will produce a list of
all images available on the storage server. After th
From: Michael Rasmussen
Signed-off-by: Michael Rasmussen
---
PVE/Storage/ZFSPlugin.pm | 5 -
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm
index e39b965..ff32b97 100644
--- a/PVE/Storage/ZFSPlugin.pm
+++ b/PVE/Storage/ZFSPlu
1 - 100 of 148 matches
Mail list logo