mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-10-31 19:32:31 +00:00 
			
		
		
		
	git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1564 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			105 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
| # IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
 | |
| package xCAT_plugin::copycds;
 | |
| use Storable qw(dclone);
 | |
| use xCAT::Table;
 | |
| use Data::Dumper;
 | |
| use Getopt::Long;
 | |
| use File::Basename;
 | |
| Getopt::Long::Configure("bundling");
 | |
| Getopt::Long::Configure("pass_through");
 | |
| 
 | |
| my $processed = 0;
 | |
| my $callback;
 | |
| 
 | |
| sub handled_commands {
 | |
|   return {
 | |
|     copycds => "copycds",
 | |
|   }
 | |
| }
 | |
|  
 | |
| my $identified;
 | |
|   
 | |
| sub take_answer {
 | |
| #TODO: Intelligently filter and decide things
 | |
|   my $resp = shift;
 | |
|   $callback->($resp);
 | |
|   $identified=1;
 | |
| }
 | |
| 
 | |
| sub process_request {
 | |
|   my $request = shift;
 | |
|   $callback = shift;
 | |
|   my $doreq = shift;
 | |
|   my $distname = undef;
 | |
|   my $arch = undef;
 | |
|   $identified=0;
 | |
|   $::CDMOUNTPATH="/mnt/xcat";
 | |
| 
 | |
|   @ARGV = @{$request->{arg}};
 | |
|   GetOptions(
 | |
|     'n|name|osver=s' => \$distname,
 | |
|     'a|arch=s' => \$arch
 | |
|   );
 | |
|   if ($arch and $arch =~ /i.86/) {
 | |
|     $arch = x86;
 | |
|   }
 | |
|   my @args = @ARGV; #copy ARGV
 | |
|   unless ($#args >= 0) {
 | |
|     $callback->({error=>"copycds needs at least one full path to ISO currently."});
 | |
|     return;
 | |
|   }
 | |
|   foreach (@args) {
 | |
|     unless (/^\//) { #If not an absolute path, concatenate with client specified cwd
 | |
|       s/^/$request->{cwd}->[0]\//;
 | |
|     }
 | |
| 
 | |
|     # /dev/cdrom is a symlink on some systems, we need to see if it points to a
 | |
|     # block device.
 | |
|     if (-l $_) { 
 | |
|       my $link = readlink($_);
 | |
|       if ($link =~ m{^/})
 | |
|         { $file = $link; }
 | |
|       else
 | |
|         { $file = dirname($_) . "/" . $link; }
 | |
|     }
 | |
|     else { $file = $_; }
 | |
| 
 | |
|     my $mntopts;
 | |
|     if (-r $file and -b $file) # Block device?
 | |
|       { $mntopts = "-o ro"; }
 | |
|     elsif (-r $file and -f $file) 
 | |
|       { $mntopts = "-o ro,loop"; }
 | |
|     else {
 | |
|       $callback->({error=>"The management server was unable to find/read $file. Ensure that file exists on the server at the specified location."});
 | |
|       return;
 | |
|     }
 | |
| 
 | |
|     mkdir "/mnt/xcat";
 | |
| 
 | |
|     if (system("mount $mntopts $file /mnt/xcat")) {
 | |
|       $callback->({error=>"copycds was unable to mount $file to /mnt/xcat."});
 | |
|       return;
 | |
|     }
 | |
|     my $newreq = dclone($request);
 | |
|     $newreq->{command}= [ 'copycd' ]; #Note the singular, it's different
 | |
|     $newreq->{arg} = ["-p","/mnt/xcat"];
 | |
|     if ($distname) {
 | |
|       push @{$newreq->{arg}},("-n",$distname);
 | |
|     }
 | |
|     if ($arch) {
 | |
|       push @{$newreq->{arg}},("-a",$arch);
 | |
|     }
 | |
|     $doreq->($newreq,\&take_answer);
 | |
|     $::CDMOUNTPATH="";
 | |
| 
 | |
|     system("umount /mnt/xcat");
 | |
|     unless ($identified) {
 | |
|        $callback->({error=>["copycds could not identify the ISO supplied, you may wish to try -n <osver>"],errorcode=>[1]});
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| 1;
 | |
| 
 | |
| # vim: set ts=2 sts=2 sw=2 et ai:
 |