mirror of
				https://git.launchpad.net/livecd-rootfs
				synced 2025-11-04 10:54:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			194 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			194 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
set -e
 | 
						|
 | 
						|
dpkg-divert --quiet --add --divert /bin/sync.REAL --rename /bin/sync
 | 
						|
cat > /bin/sync <<'EOF'
 | 
						|
#! /bin/sh
 | 
						|
echo "$0: diverted by livecd-rootfs" >&2
 | 
						|
exit 0
 | 
						|
EOF
 | 
						|
 | 
						|
chmod +x /bin/sync
 |