mirror of
				https://gitea.blesmrt.net/mikaela/shell-things.git
				synced 2025-11-04 03:17:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			176 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			176 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -x
 | 
						|
mkdir -p /etc/ssh
 | 
						|
cat ssh_config > /etc/ssh/ssh_config
 | 
						|
cat sshd_config > /etc/ssh/sshd_config
 | 
						|
chmod a-x,u+rw,g+r-w,o+r-w /etc/ssh/ssh?_config
 | 
						|
set +x
 |