From 98735f827af6179e16d0036cf59a32c8270917d0 Mon Sep 17 00:00:00 2001 From: Michael Rasmussen Date: Wed, 2 Oct 2013 22:13:37 +0200 Subject: [PATCH] Remove unused functionality Signed-off-by: Michael Rasmussen --- PVE/Storage/ZFSPlugin.pm | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm index c8a47d2..c25d5ec 100644 --- a/PVE/Storage/ZFSPlugin.pm +++ b/PVE/Storage/ZFSPlugin.pm @@ -47,12 +47,7 @@ sub zfs_request { $zfscmd = 'zfs'; } - if ($scfg->{sudo}) { - $zfscmd = 'sudo ' . $zfscmd; - $target = $scfg->{portal}; - } else { - $target = 'root@' . $scfg->{portal}; - } + $target = 'root@' . $scfg->{portal}; my $cmd = [@ssh_cmd, $target, $zfscmd, $method, @params]; @@ -306,22 +301,10 @@ sub plugindata { sub properties { return { - chap => { - description => "chap", - type => 'string', - }, - pwd => { - description => "password", - type => 'string', - }, iscsiprovider => { description => "iscsi provider", type => 'string', }, - sudo => { - description => "use sudo", - type => 'boolean', - }, }; } @@ -332,11 +315,8 @@ sub options { portal => { fixed => 1 }, target => { fixed => 1 }, pool => { fixed => 1 }, - chap => { optional => 1 }, - pwd => { optional => 1 }, blocksize => { fixed => 1 }, iscsiprovider => { fixed => 1 }, - sudo => { optional => 1 }, content => { optional => 1 }, }; }