mirror of
git://git.proxmox.com/git/pve-storage.git
synced 2025-01-03 01:18:01 +03:00
plugin: enable import for nfs/btrfs/cifs/cephfs/glusterfs
and reuse the DirPlugin implementation Signed-off-by: Dominik Csapak <d.csapak@proxmox.com> Reviewed-by: Fiona Ebner <f.ebner@proxmox.com>
This commit is contained in:
parent
40df25db17
commit
974081ce15
@ -40,6 +40,7 @@ sub plugindata {
|
|||||||
backup => 1,
|
backup => 1,
|
||||||
snippets => 1,
|
snippets => 1,
|
||||||
none => 1,
|
none => 1,
|
||||||
|
import => 1,
|
||||||
},
|
},
|
||||||
{ images => 1, rootdir => 1 },
|
{ images => 1, rootdir => 1 },
|
||||||
],
|
],
|
||||||
@ -963,4 +964,8 @@ sub rename_volume {
|
|||||||
return "${storeid}:$target_volname";
|
return "${storeid}:$target_volname";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub get_import_metadata {
|
||||||
|
return PVE::Storage::DirPlugin::get_import_metadata(@_);
|
||||||
|
}
|
||||||
|
|
||||||
1
|
1
|
||||||
|
@ -99,7 +99,7 @@ sub type {
|
|||||||
sub plugindata {
|
sub plugindata {
|
||||||
return {
|
return {
|
||||||
content => [ { images => 1, rootdir => 1, vztmpl => 1, iso => 1,
|
content => [ { images => 1, rootdir => 1, vztmpl => 1, iso => 1,
|
||||||
backup => 1, snippets => 1}, { images => 1 }],
|
backup => 1, snippets => 1, import => 1}, { images => 1 }],
|
||||||
format => [ { raw => 1, qcow2 => 1, vmdk => 1 } , 'raw' ],
|
format => [ { raw => 1, qcow2 => 1, vmdk => 1 } , 'raw' ],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -314,4 +314,8 @@ sub update_volume_attribute {
|
|||||||
return PVE::Storage::DirPlugin::update_volume_attribute(@_);
|
return PVE::Storage::DirPlugin::update_volume_attribute(@_);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub get_import_metadata {
|
||||||
|
return PVE::Storage::DirPlugin::get_import_metadata(@_);
|
||||||
|
}
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
@ -116,7 +116,7 @@ sub type {
|
|||||||
|
|
||||||
sub plugindata {
|
sub plugindata {
|
||||||
return {
|
return {
|
||||||
content => [ { vztmpl => 1, iso => 1, backup => 1, snippets => 1},
|
content => [ { vztmpl => 1, iso => 1, backup => 1, snippets => 1, import => 1 },
|
||||||
{ backup => 1 }],
|
{ backup => 1 }],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -261,4 +261,8 @@ sub update_volume_attribute {
|
|||||||
return PVE::Storage::DirPlugin::update_volume_attribute(@_);
|
return PVE::Storage::DirPlugin::update_volume_attribute(@_);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub get_import_metadata {
|
||||||
|
return PVE::Storage::DirPlugin::get_import_metadata(@_);
|
||||||
|
}
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
@ -97,7 +97,7 @@ sub type {
|
|||||||
|
|
||||||
sub plugindata {
|
sub plugindata {
|
||||||
return {
|
return {
|
||||||
content => [ { images => 1, vztmpl => 1, iso => 1, backup => 1, snippets => 1},
|
content => [ { images => 1, vztmpl => 1, iso => 1, backup => 1, snippets => 1, import => 1},
|
||||||
{ images => 1 }],
|
{ images => 1 }],
|
||||||
format => [ { raw => 1, qcow2 => 1, vmdk => 1 } , 'raw' ],
|
format => [ { raw => 1, qcow2 => 1, vmdk => 1 } , 'raw' ],
|
||||||
};
|
};
|
||||||
@ -352,4 +352,8 @@ sub check_connection {
|
|||||||
return defined($server) ? 1 : 0;
|
return defined($server) ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub get_import_metadata {
|
||||||
|
return PVE::Storage::DirPlugin::get_import_metadata(@_);
|
||||||
|
}
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
@ -53,7 +53,7 @@ sub type {
|
|||||||
|
|
||||||
sub plugindata {
|
sub plugindata {
|
||||||
return {
|
return {
|
||||||
content => [ { images => 1, rootdir => 1, vztmpl => 1, iso => 1, backup => 1, snippets => 1 },
|
content => [ { images => 1, rootdir => 1, vztmpl => 1, iso => 1, backup => 1, snippets => 1, import => 1 },
|
||||||
{ images => 1 }],
|
{ images => 1 }],
|
||||||
format => [ { raw => 1, qcow2 => 1, vmdk => 1 } , 'raw' ],
|
format => [ { raw => 1, qcow2 => 1, vmdk => 1 } , 'raw' ],
|
||||||
};
|
};
|
||||||
@ -223,4 +223,8 @@ sub update_volume_attribute {
|
|||||||
return PVE::Storage::DirPlugin::update_volume_attribute(@_);
|
return PVE::Storage::DirPlugin::update_volume_attribute(@_);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub get_import_metadata {
|
||||||
|
return PVE::Storage::DirPlugin::get_import_metadata(@_);
|
||||||
|
}
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
Loading…
Reference in New Issue
Block a user