mirror of
				https://git.launchpad.net/livecd-rootfs
				synced 2025-10-30 00:14:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			278 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			278 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #! /bin/sh
 | |
| 
 | |
| set -eu
 | |
| 
 | |
| case ${PASS:-} in
 | |
|     minimal.standard)
 | |
|         ;;
 | |
|     *)
 | |
|         exit 0
 | |
|         ;;
 | |
| esac
 | |
| 
 | |
| if [ "$(dpkg --print-architecture)" = amd64 ]; then
 | |
|     echo "I: Enabling amd64 multiarch support on amd64"
 | |
|     dpkg --add-architecture i386
 | |
| 
 | |
|     apt-get -y update
 | |
| fi
 |