mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-10-26 08:42:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			393 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			393 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # avoid disk full
 | |
| 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
 | |
| 
 | |
| 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
 | |
| 
 | |
| echo "success"
 | |
| 
 |