mirror of
				https://git.launchpad.net/livecd-rootfs
				synced 2025-11-04 10:54:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			297 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			297 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh -ex
 | 
						|
 | 
						|
dpkg-divert --quiet --add \
 | 
						|
        --divert /usr/sbin/grub-install.REAL --rename \
 | 
						|
        /usr/sbin/grub-install
 | 
						|
 | 
						|
cat > /usr/sbin/grub-install <<'EOF'
 | 
						|
#! /bin/sh
 | 
						|
echo "grub-install: diverted by livecd-rootfs (will be called later)" >&2
 | 
						|
exit 0
 | 
						|
EOF
 | 
						|
 | 
						|
chmod +x /usr/sbin/grub-install
 |