mirror of
				https://git.launchpad.net/livecd-rootfs
				synced 2025-11-04 02:44:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			199 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			199 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#! /bin/sh -ex
 | 
						|
 | 
						|
ARCH=$(dpkg --print-architecture)
 | 
						|
 | 
						|
case $ARCH in
 | 
						|
    i386|amd64)
 | 
						|
        rm -f /usr/sbin/grub-install
 | 
						|
        dpkg-divert --quiet --remove --rename /usr/sbin/grub-install
 | 
						|
    ;;
 | 
						|
esac
 |