[pve-devel] [PATCH] Remove unused functionality

mir at datanom.net mir at datanom.net
Wed Oct 2 22:13:37 CEST 2013


From: Michael Rasmussen <mir at datanom.net>

Signed-off-by: Michael Rasmussen <mir at datanom.net>
---
 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 },
     };
 }
-- 
1.8.4.rc3




More information about the pve-devel mailing list