diff --git a/xCAT-client/bin/updatenode b/xCAT-client/bin/updatenode index e8b7e2431..277f39f02 100755 --- a/xCAT-client/bin/updatenode +++ b/xCAT-client/bin/updatenode @@ -95,7 +95,6 @@ if ( 'P|scripts:s' => \$::RERUNPS, 'k|security' => \$::SECURITY, 'o|os:s' => \$::OS, - 'fanout=i' => \$::fanout, ) ) { &updatenode_usage(); diff --git a/xCAT-client/bin/xdsh b/xCAT-client/bin/xdsh index d42472e1c..23e0e5d5c 100644 --- a/xCAT-client/bin/xdsh +++ b/xCAT-client/bin/xdsh @@ -215,7 +215,6 @@ sub parse_args_xdsh xCAT::MsgUtils->message("E", $msg); exit 1; } - Getopt::Long::Configure("posix_default"); Getopt::Long::Configure("no_gnu_compat"); Getopt::Long::Configure("bundling"); @@ -350,15 +349,6 @@ sub parse_args_xdsh } $ENV{'DSHEXECUTE'} = $executescript; # execute script } - # -E option if not already exported - - if ($options{environment}) - { - if (!($ENV{'DSH_ENVIRONMENT'})) { # env variable first - $ENV{'DSH_ENVIRONMENT'} = $options{environment}; # env file - } - } - # find out who is the current user running xdsh #my $current_userid = getlogin(); # does not work for su @@ -526,15 +516,15 @@ sub parse_args_xdsh #----------------------------------------------------------------------------- sub parse_args_xdcp { - - my %options = (); - # test to see if any parameters were entered + # if not parms input error out my $arraysize=@ARGV; if ($arraysize ==0) { my $msg= "No parameters were supplied on the xdcp command. Run xdcp -h"; xCAT::MsgUtils->message("E", $msg); exit 1; } + + my %options = (); Getopt::Long::Configure("posix_default"); Getopt::Long::Configure("no_gnu_compat"); Getopt::Long::Configure("bundling");