mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	 e6e31dd540
			
		
	
	
		e6e31dd540
		
			
		
	
	
	
	
		
			
			In continuation of previous #13451, this commits adds native-deb* targets for make to build native debian packages. Github workflows are updated to build and test native Debian packages. Native packages only build with pre-configured paths (see the dh_auto_configure section in contrib/debian/rules.in). While building native packages, paths should not be configured. Initial config flags e.g. '--enable-debug' are replaced in contrib/debian/rules.in. Additional packages on top of existing zfs packages required to build native packages include debhelper-compat, dh-python, dkms, po-debconf, python3-all-dev, python3-sphinx. Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Ryan Moeller <ryan@iXsystems.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Umer Saleem <usaleem@ixsystems.com> Closes #14265
		
			
				
	
	
		
			14 lines
		
	
	
		
			291 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			291 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| set -e
 | |
| 
 | |
| zedd="/usr/lib/zfs-linux/zed.d"
 | |
| etcd="/etc/zfs/zed.d"
 | |
| 
 | |
| # remove the overrides created in prerm
 | |
| find "${etcd}" -maxdepth 1 -lname '/dev/null' -delete
 | |
| # remove any dangling symlinks to old zedlets
 | |
| find "${etcd}" -maxdepth 1 -lname "${zedd}/*" -xtype l  -delete
 | |
| 
 | |
| #DEBHELPER#
 | |
| 
 |