mirror of
				https://github.com/vyos/vyos-build.git
				synced 2025-10-01 20:28:40 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			352 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			352 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# We do not need any documentation on the system. This frees some space.
 | 
						|
# Copyright/licenses files are ignored for deletion
 | 
						|
shopt -s extglob
 | 
						|
rm -rf /usr/share/doc/*/!(copyright*|README*) /usr/share/doc-base
 | 
						|
 | 
						|
# We also do not need any manpages on the system since man-binary is missing.
 | 
						|
# This also frees some space.
 | 
						|
rm -rf /usr/share/man
 |