mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-10-26 08:42:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			284 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			284 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh -e
 | |
| 
 | |
| case "$1" in
 | |
|     configure)
 | |
| 
 | |
| 	for i in /var/log/cloud/console-proxy
 | |
| 	do
 | |
| 		chmod 0770 $i
 | |
| 	done
 | |
| 	
 | |
| 	if [ "$2" = "" ] ; then # no recently configured version, this is a first install
 | |
| 		/usr/sbin/update-rc.d cloud-console-proxy defaults || true
 | |
| 	fi
 | |
| 	
 | |
|     ;;
 | |
| esac
 | |
| 
 | |
| #DEBHELPER# |