]> git.proxmox.com Git - pve-storage.git/blobdiff - PVE/Storage/DirPlugin.pm
fixup error messages when getting file size info
[pve-storage.git] / PVE / Storage / DirPlugin.pm
diff --git a/PVE/Storage/DirPlugin.pm b/PVE/Storage/DirPlugin.pm
deleted file mode 100644 (file)
index ab9e4bd..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-package PVE::Storage::DirPlugin;
-
-use strict;
-use warnings;
-use File::Path;
-use PVE::Storage::Plugin;
-use PVE::JSONSchema qw(get_standard_option);
-
-use base qw(PVE::Storage::Plugin);
-
-# Configuration
-
-sub type {
-    return 'dir';
-}
-
-sub plugindata {
-    return {
-       content => [ { images => 1, rootdir => 1, vztmpl => 1, iso => 1, backup => 1, none => 1 },
-                    { images => 1,  rootdir => 1 }],
-       format => [ { raw => 1, qcow2 => 1, vmdk => 1, subvol => 1 } , 'raw' ],
-    };
-}   
-
-sub properties {
-    return {
-       path => {
-           description => "File system path.",
-           type => 'string', format => 'pve-storage-path',
-       },
-       mkdir => {
-           description => "Create the directory if it doesn't exist.",
-           type => 'boolean',
-           default => 'yes',
-       },
-    };
-}
-
-sub options {
-    return {
-       path => { fixed => 1 },
-        nodes => { optional => 1 },
-       shared => { optional => 1 },
-       disable => { optional => 1 },
-        maxfiles => { optional => 1 },
-       content => { optional => 1 },
-       format => { optional => 1 },
-       mkdir => { optional => 1 },
-   };
-}
-
-# Storage implementation
-
-sub activate_storage {
-    my ($class, $storeid, $scfg, $cache) = @_;
-
-    if (!defined($scfg->{mkdir}) || $scfg->{mkdir}) {
-       my $path = $scfg->{path};
-       mkpath $path;
-    }
-
-    $class->SUPER::activate_storage($storeid, $scfg, $cache);    
-}
-
-sub check_config {
-    my ($self, $sectionId, $config, $create, $skipSchemaCheck) = @_;
-    my $opts = PVE::SectionConfig::check_config($self, $sectionId, $config, $create, $skipSchemaCheck);
-    return $opts if !$create;
-    if ($opts->{path} !~ m@^/[-/a-zA-Z0-9_.]+$@) {
-       die "illegal path for directory storage: $opts->{path}\n";
-    }
-    return $opts;
-}
-
-1;