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
8c846a7b
Commit
8c846a7b
authored
Mar 23, 2012
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug 124: correctly return maxfiles flag
parent
54762b0e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
7 deletions
+12
-7
VZDump.pm
PVE/VZDump.pm
+2
-6
changelog.Debian
debian/changelog.Debian
+9
-0
defines.mk
defines.mk
+1
-1
No files found.
PVE/VZDump.pm
View file @
8c846a7b
...
...
@@ -92,6 +92,7 @@ sub storage_info {
return
{
dumpdir
=>
PVE::Storage::
get_backup_dir
(
$cfg
,
$storage
),
maxfiles
=>
$scfg
->
{
maxfiles
},
};
}
...
...
@@ -486,15 +487,10 @@ sub new {
my
$pd
=
$p
->
new
(
$self
);
push
@
{
$self
->
{
plugins
}},
$pd
;
if
(
!
$opts
->
{
dumpdir
}
&&
!
$opts
->
{
storage
}
&&
(
$p
eq
'
PVE::VZDump::OpenVZ
'))
{
$opts
->
{
dumpdir
}
=
$pd
->
{
dumpdir
};
}
}
if
(
!
$opts
->
{
dumpdir
}
&&
!
$opts
->
{
storage
})
{
die
"
no dumpdir/storage specified - use option '--dumpdir' or option '--storage'
\n
"
;
$opts
->
{
storage
}
=
'
local
'
;
}
if
(
$opts
->
{
storage
})
{
...
...
debian/changelog.Debian
View file @
8c846a7b
pve-manager (2.0-45) unstable; urgency=low
* fix bug 124: correctly return maxfiles flag
* vzdump: use storage 'local' as default backup target (instead of using
Openvz dump directory settings)
-- Proxmox Support Team <support@proxmox.com> Fri, 23 Mar 2012 12:36:15 +0100
pve-manager (2.0-44) unstable; urgency=low
* Disable automatic file removal on 'Backup now'
...
...
defines.mk
View file @
8c846a7b
...
...
@@ -2,7 +2,7 @@ RELEASE=2.0
VERSION=2.0
PACKAGE=pve-manager
PACKAGERELEASE=4
4
PACKAGERELEASE=4
5
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