mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			208 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			208 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh -e
 | 
						|
 | 
						|
case "$1" in
 | 
						|
    configure)
 | 
						|
 | 
						|
	if [ "$2" = "" ] ; then # no recently configured version, this is a first install
 | 
						|
		/usr/sbin/update-rc.d cloud-vnet defaults || true
 | 
						|
	fi
 | 
						|
	
 | 
						|
    ;;
 | 
						|
esac
 | 
						|
 | 
						|
#DEBHELPER# |