Commit Graph

1729 Commits

Author SHA1 Message Date
Dietmar Maurer
bac5bd135c rename manager5 to manager6 2016-01-22 11:24:10 +01:00
Emmanuel Kasper
faea780768 update build infrastucture to be able to develop with Ext6 2015-11-13 07:08:04 +01:00
Dietmar Maurer
adfca12dcf bump version to 4.0-60 2015-11-10 07:49:19 +01:00
Thomas Lamprecht
efedd8c36f make startall wait up to 60 seconds for quorum
Previously we waited 10 seconds, in PVE 4 system sometimes need more
time to initialize all services so the didn't execute the startall
command even if a few seconds later cfs quorum was etablished.
This is a background process started from the pve-manager init
script, thus waiting doesn't interferes with other processes, so
wait long enough.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2015-11-10 07:48:20 +01:00
Dietmar Maurer
b819819b75 bump version to 4.0-59 2015-11-06 10:21:18 +01:00
Dietmar Maurer
3a9295100f Sytem Report: place download button at bottom/right 2015-11-06 10:19:29 +01:00
Emmanuel Kasper
88605108ef Add report modal window, containing pvereport content
Signed-off-by: Emmanuel Kasper <e.kasper@proxmox.com>
2015-11-06 10:07:17 +01:00
Emmanuel Kasper
6bbdf981d1 Use protected mode to be able to execute root system commands
Signed-off-by: Emmanuel Kasper <e.kasper@proxmox.com>
2015-11-06 10:06:11 +01:00
Dietmar Maurer
cdb5a20942 report: change return type to string 2015-11-03 18:14:51 +01:00
Emmanuel Kasper
34ada77a13 Add REST endpoint for /report call 2015-11-03 18:10:44 +01:00
Emmanuel Kasper
2f7faeed28 Move pvereport functionality into a separate PVE package 2015-11-03 18:10:22 +01:00
Dietmar Maurer
36176c222c bump version to 4.0-58 2015-10-30 16:13:45 +01:00
Thomas Lamprecht
64e5196914 Improve HA UI for users with restricted permissions
Only show edit dialogs for HA resources and groups when an user
has the privileges to edit them.
2015-10-30 16:11:42 +01:00
Dietmar Maurer
8a00780d3b bump version to 4.0-57 2015-10-30 07:18:08 +01:00
Emmanuel Kasper
f0afcf35fe Pretty format the output of multiple files in a directory
Also, don't "cat" non existing files
2015-10-30 07:11:36 +01:00
Dietmar Maurer
73aeb2007e add Galician to GUI 2015-10-28 13:02:26 +01:00
Dietmar Maurer
b3da6ec360 bump version to 4.0-56 2015-10-28 11:53:57 +01:00
Wolfgang Link
ceebc5fc7c add bios report to pvereport 2015-10-28 11:51:25 +01:00
Wolfgang Link
f99124fb8a add mouint point to GUI 2015-10-28 11:42:00 +01:00
Wolfgang Link
c2ee953ce8 add resize LXC Mountpoint at the GUI 2015-10-28 11:40:07 +01:00
Wolfgang Link
d807e210d5 move Root Disk form Options to Resources and add icon for it 2015-10-28 11:37:31 +01:00
Wolfgang Link
21855147bc add icons to resources 2015-10-28 11:36:37 +01:00
Wolfgang Link
e3b6adbd1c add swap icon for LXC resources 2015-10-28 11:35:51 +01:00
Dietmar Maurer
7216990dd2 RBD: select 'images' content type by default
because we also do not set KRBD flag by default.
2015-10-28 11:14:39 +01:00
Dietmar Maurer
07443f521d bump version to 4.0-55 2015-10-28 09:26:22 +01:00
Alexandre Derumier
fc049c7e4f pve-manager service : start after open-iscsi
Currently,if we have vms on lvm on top of iscsi,

pve-manager service start them too early at host boot,
before open-iscsi daemon, and vm don't start.

Reported-by: Philippe Guy <ph.guy@decidem.fr>
Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
2015-10-28 09:24:33 +01:00
Alexandre Derumier
10fa179f75 pveceph install : use release repository
and increase git release key retrieval.
(ceph.com git seem to be quite slow currently)

Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
2015-10-28 09:23:47 +01:00
Emmanuel Kasper
e03a790042 Add new pvereport command 2015-10-27 07:31:57 +01:00
Dietmar Maurer
f13b954026 remove old/usused init.d files in postinst 2015-10-24 10:35:20 +02:00
Dietmar Maurer
793af71320 bump version to 4.0-54 2015-10-24 09:55:15 +02:00
Dietmar Maurer
451bd04c53 fix lxc crteate wizard 2015-10-24 09:54:22 +02:00
Wolfgang Link
9ea5485da7 fix create CT: this fix the create CT what happend in previous refactoring. 2015-10-23 17:52:18 +02:00
Dietmar Maurer
96f2685651 bump version to 4.0-52 2015-10-23 13:41:02 +02:00
Wolfgang Link
34782e2669 fix bug #781: separate CPU and memory in editor
This is necessary because CPU are not hot-plug-able and memory are hot-plug-able.
also this will be useful for the new resource window.
2015-10-23 13:40:00 +02:00
Dietmar Maurer
9c84c9ea98 bump version to 4.0-51 2015-10-20 09:52:07 +02:00
Thomas Lamprecht
3625a09137 Fix check if vm is ha managed in get_start_stop_list
The check used was completely wrong and so the startall and stopall
API calls touched HA managed service, which they shouldn't.

Using the vm_is_ha_managed call from the HA stack fixes that.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2015-10-20 09:50:00 +02:00
Thomas Lamprecht
04b2004b36 fix lxc config key in get_start_stop_list sub
When adding the new LXC config format we forgot to adapt the
get_start_stop_list and do s/pve.startup/onboot/

This fixes that qemu VMs were started always before LXC CTs,
irregardless of the defined order.

This also let's us simplify the surrounding code and reduce code
reuse.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2015-10-20 09:46:16 +02:00
Dietmar Maurer
9199356e3d bump version to 4.0-50 2015-10-15 17:42:09 +02:00
Dietmar Maurer
aa0b406653 fix bug #756: force macro setting to emtpy string when user erases the content 2015-10-15 17:38:56 +02:00
Dietmar Maurer
24bf5bd4d4 GUI: add new vtype ConfigId, use it for snapshot names 2015-10-12 08:15:45 +02:00
Dietmar Maurer
ac9336bc99 s/Realtec/Realtek/
correct brand name
2015-10-09 14:37:59 +02:00
Dietmar Maurer
9056f941bc bump version to 4.0-49 2015-10-09 08:17:16 +02:00
Dietmar Maurer
1649c0b535 IP4_cidr_match: allow short masks like /8 2015-10-09 08:16:00 +02:00
Dietmar Maurer
d234b0bf10 bump version to 4.0-48 2015-10-05 17:47:48 +02:00
Wolfgang Bumiller
0bc9e03b0b lxc/dns: ipv6 support 2015-10-05 17:46:39 +02:00
Dietmar Maurer
ac0831fd1e bump version to 4.0-47 2015-10-05 12:34:35 +02:00
Wolfgang Bumiller
7a9486a7e1 DNS ui/api: ipv6 support 2015-10-05 12:33:42 +02:00
Dietmar Maurer
638b2d7dcc bump version to 4.0-46 2015-10-03 15:33:09 +02:00
Dietmar Maurer
ca2605e76f fix bug #719: vzdump - only call cleanup after prepare 2015-10-03 15:30:45 +02:00
Dietmar Maurer
8072731573 bump version to 4.0-45 2015-10-02 11:43:52 +02:00