10 lines
		
	
	
	
		
			344 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			344 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from os.path import expanduser
 | |
| 
 | |
| 
 | |
| def apply_start(repo, target, nodes, interactive=False, **kwargs):
 | |
|     with open(expanduser('~/.ssh/known_hosts_ckn'), 'w+') as file:
 | |
|         file.write('\n'.join(sorted(
 | |
|             line
 | |
|                 for node in repo.nodes
 | |
|                 for line in node.metadata.get('ssh/is_known_as', set())
 | |
|         )))
 |