forked from ungleich-public/cdist
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
if [ "$#" -ne 1 ]; then
 | 
						|
    echo "$0 iso"
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
 | 
						|
iso=$1; shift
 | 
						|
 | 
						|
qemu-system-x86_64 -m 512 -boot order=cd \
 | 
						|
    -drive file=$iso,media=cdrom
 | 
						|
 |