You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							17 lines
						
					
					
						
							489 B
						
					
					
				
			
		
		
	
	
							17 lines
						
					
					
						
							489 B
						
					
					
				| #!/bin/sh
 | |
| set -e
 | |
| 
 | |
| OEM_DIR=/var/lib/pureos-oem/
 | |
| 
 | |
| mkdir -p $OEM_DIR
 | |
| cd $OEM_DIR
 | |
| 
 | |
| apt install -y ca-certificates
 | |
| 
 | |
| # d-i components
 | |
| wget http://repo.pureos.net/pureos/dists/green/main/installer-amd64/20170525pureos3/images/hd-media/gtk/initrd.gz
 | |
| wget http://repo.pureos.net/pureos/dists/green/main/installer-amd64/20170525pureos3/images/hd-media/gtk/vmlinuz
 | |
| 
 | |
| # PureOS image
 | |
| wget --progress=dot:giga https://downloads.puri.sm/snapshots/2017-05-31/pureos-3.0-live-amd64.hybrid.iso -O pureos.iso
 |