You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
	
		
		
			
				
				
					
						
						
						
							 | 
							
							#!/bin/sh
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							# Allow PasswordAuthentification in sshd config
 | 
						
						
						
						
							 | 
							
							sed -i -e 's|#\?\(PasswordAuthentication\) no|\1 yes|' /etc/ssh/sshd_config
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							# Allow root login with password
 | 
						
						
						
						
							 | 
							
							sed -i -e 's|#\?\(PermitRootLogin\) prohibit-password|\1 yes|' /etc/ssh/sshd_config
 |