mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 16:31:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			163 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			163 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #!/sbin/runscript
 | |
| 
 | |
| depend() {
 | |
|   after localmount
 | |
|   after netmount
 | |
|   before cloud-init
 | |
|   provide cloud-init-local
 | |
| }
 | |
| 
 | |
| start() {
 | |
|   cloud-init init --local
 | |
|   eend 0
 | |
| }
 |