mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-10-31 19:32:31 +00:00 
			
		
		
		
	Merge pull request #2635 from immarvin/oncopycds
fix issue copycds issues when using -p path option #2630
This commit is contained in:
		| @@ -145,8 +145,11 @@ sub process_request { | ||||
|  | ||||
|             if ($path) | ||||
|             { | ||||
|                 $path=Cwd::realpath($path); | ||||
|                 unless(substr($path,0,length("/install")) eq "/install"){ | ||||
|                  | ||||
|                 if(-e $path) { | ||||
|                     $path=Cwd::realpath($path); | ||||
|                 } | ||||
|                 unless((substr($path,0,length("/install/")) eq "/install/") or ($path eq "/install")){ | ||||
|                     $callback->({ warning => "copycds: the specified path \"$path\" is not a subdirectory under /install. Make sure this path is configured for httpd/apache, otherwise, the provisioning with this iso will fail!" });  | ||||
|                 } | ||||
|                 push @{ $newreq->{arg} }, ("-p", $path); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user