Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pve-manager
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
pve-manager
Commits
5dd04127
Commit
5dd04127
authored
May 30, 2012
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix vzdump --exclude-path
parent
dc009a6f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
6 deletions
+16
-6
VZDump.pm
PVE/API2/VZDump.pm
+9
-5
changelog.Debian
debian/changelog.Debian
+6
-0
defines.mk
defines.mk
+1
-1
No files found.
PVE/API2/VZDump.pm
View file @
5dd04127
...
...
@@ -92,13 +92,17 @@ __PACKAGE__->register_method ({
my
@exclude
=
PVE::Tools::
split_list
(
extract_param
(
$param
,
'
exclude
'));
$param
->
{
exclude
}
=
PVE::VZDump::
check_vmids
(
@exclude
);
# exclude-path list need to be 0 separated
my
@expaths
=
split
(
/\0/
,
$param
->
{'
exclude-path
'}
||
'');
$param
->
{'
exclude-path
'}
=
[
@expaths
];
if
(
defined
(
$param
->
{'
exclude-path
'}))
{
my
@expaths
=
split
(
/\0/
,
$param
->
{'
exclude-path
'}
||
'');
$param
->
{'
exclude-path
'}
=
[
@expaths
];
}
my
@mailto
=
PVE::Tools::
split_list
(
extract_param
(
$param
,
'
mailto
'));
$param
->
{
mailto
}
=
[
@mailto
];
if
(
defined
(
$param
->
{
mailto
}))
{
my
@mailto
=
PVE::Tools::
split_list
(
extract_param
(
$param
,
'
mailto
'));
$param
->
{
mailto
}
=
[
@mailto
];
}
die
"
you can only backup a single VM with option --stdout
\n
"
if
$param
->
{
stdout
}
&&
scalar
(
@vmids
)
!=
1
;
...
...
debian/changelog.Debian
View file @
5dd04127
pve-manager (2.1-7) unstable; urgency=low
* fix vzdump --exclude-path (allow to read value from vzdump.conf)
-- Proxmox Support Team <support@proxmox.com> Wed, 30 May 2012 07:24:30 +0200
pve-manager (2.1-6) unstable; urgency=low
* include Danish translation
...
...
defines.mk
View file @
5dd04127
...
...
@@ -2,7 +2,7 @@ RELEASE=2.1
VERSION=2.1
PACKAGE=pve-manager
PACKAGERELEASE=
6
PACKAGERELEASE=
7
BINDIR=${DESTDIR}/usr/bin
PERLLIBDIR=${DESTDIR}/usr/share/perl5
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment