mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			305 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			305 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Base install
 | 
						|
 | 
						|
sed -i "s/^.*requiretty/#Defaults requiretty/" /etc/sudoers
 | 
						|
 | 
						|
cat > /etc/yum.repos.d/epel.repo << EOM
 | 
						|
[epel]
 | 
						|
name=epel
 | 
						|
baseurl=http://download.fedoraproject.org/pub/epel/6/\$basearch
 | 
						|
enabled=1
 | 
						|
gpgcheck=0
 | 
						|
EOM
 | 
						|
 | 
						|
# Make ssh faster by not waiting on DNS
 | 
						|
echo "UseDNS no" >> /etc/ssh/sshd_config
 |