mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-10-26 08:42:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| # Copyright 2012 Citrix Systems, Inc. Licensed under the
 | |
| # Apache License, Version 2.0 (the "License"); you may not use this
 | |
| # file except in compliance with the License.  Citrix Systems, Inc.
 | |
| # reserves all rights not expressly granted by the License.
 | |
| # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
 | |
| # Unless required by applicable law or agreed to in writing, software
 | |
| # distributed under the License is distributed on an "AS IS" BASIS,
 | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| # See the License for the specific language governing permissions and
 | |
| # limitations under the License.
 | |
| # 
 | |
| # Automatically generated by addcopyright.py at 04/03/2012
 | |
| 
 | |
| #set -x
 | |
|  
 | |
| usage() {
 | |
|   printf "Usage: \n" $(basename $0)
 | |
| 
 | |
| }
 | |
| 
 | |
| 
 | |
| #removing iptables entry for vnc ports
 | |
| iptables -D RH-Firewall-1-INPUT -p tcp -m tcp --dport 5900:6099 -j ACCEPT 2>&1
 | |
| 
 | |
| # remove listening vnc on all interface
 | |
| sed -i 's/0\.0\.0\.0/127\.0\.0\.1/' /opt/xensource/libexec/vncterm-wrapper 2>&1
 | |
| sed -i 's/0\.0\.0\.0/127\.0\.0\.1/' /opt/xensource/libexec/qemu-dm-wrapper 2>&1
 | |
| 
 | |
| # disable the default link local on xenserver
 | |
| sed -i /NOZEROCONF/d /etc/sysconfig/network
 | |
| echo "NOZEROCONF=yes" >> /etc/sysconfig/network
 | |
| 
 | |
| mv /etc/cron.daily/logrotate /etc/cron.hourly 2>&1
 | |
| 
 | |
| # more aio thread
 | |
| echo 1048576 >/proc/sys/fs/aio-max-nr
 | |
| 
 | |
| # empty heartbeat
 | |
| cat /dev/null > /opt/xensource/bin/heartbeat
 | |
| # empty knownhost
 | |
| cat /dev/null > /root/.ssh/known_hosts
 | |
| 
 | |
| rm -f /opt/xensource/packages/iso/systemvm-premium.iso
 | |
| 
 | |
| echo "success"
 | |
| 
 |