mirror of
				https://git.launchpad.net/livecd-rootfs
				synced 2025-10-31 08:54:06 +00:00 
			
		
		
		
	This patch currently only applies to the "ubuntu-cpc" project.
          
More and more logic has been going into the hook scripts to decide under which conditions they should run or not. As we are moving to parallelized builds of image sets, this will get even more complicated. Base hooks will have to know which image sets they belong to and modification of the dependency chain between scripts will become more complicated and prone to errors, as the number of image sets grows.
            
This patch introduces explicit ordering and dependency handling for scripts through the use of `series` files and an explicit syntax for dependency specification.
		
	
			
		
			
				
	
	
		
			12 lines
		
	
	
		
			289 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			289 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| #
 | |
| # Disable IPv6 privacy extensions
 | |
| #
 | |
| 
 | |
| cat << EOF > /etc/sysctl.d/99-cloudimg-ipv6.conf
 | |
| # Written by the Cloud Image build process
 | |
| # See https://bugs.launchpad.net/ubuntu/+source/procps/+bug/1068756
 | |
| net.ipv6.conf.all.use_tempaddr = 0
 | |
| net.ipv6.conf.default.use_tempaddr = 0
 | |
| EOF
 |