mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-10-31 18:40:52 +00:00 
			
		
		
		
	 495feb8a41
			
		
	
	
		495feb8a41
		
	
	
	
	
		
			
			Debian build systems use debian subdir for building and having a debian dir in the source package causes issues. Moving it to debianpkg avoids the issue and allows us to ship debian package files in the source distribution Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
		
			
				
	
	
		
			13 lines
		
	
	
		
			310 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			310 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash -e
 | |
| 
 | |
| if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi
 | |
| ${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*"}
 | |
| # set -u	not because of debhelper
 | |
| 
 | |
| if [ "$1" = "purge" ]; then
 | |
| 	rm -rf /etc/frr /var/run/frr /var/log/frr
 | |
|   	userdel frr >/dev/null 2>&1 || true
 | |
| fi
 | |
| 
 | |
| #DEBHELPER#
 |