mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	Fix %post and %postun generation in kmodtool
During zfs-kmod RPM build, $(uname -r) gets unintentionally evaluated on the build host, once and for all. It should be evaluated during the execution of the scriptlets on the installation host. Escaping the $ character avoids evaluating it during build. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Olaf Faaland <faaland1@llnl.gov> Reviewed-by: Neal Gompa <ngompa@datto.com> Signed-off-by: Samuel Verschelde <stormi-xcp@ylix.fr> Closes #8866
This commit is contained in:
		
							parent
							
								
									8dc8bbde6e
								
							
						
					
					
						commit
						eaa21b2349
					
				| @ -178,9 +178,9 @@ EOF | ||||
| 	else | ||||
| 	  cat <<EOF | ||||
| %post          -n kmod-${kmodname}-${kernel_uname_r} | ||||
| [[ "$(uname -r)" == "${kernel_uname_r}"  ]] && ${prefix}/sbin/depmod -a > /dev/null || : | ||||
| [[ "\$(uname -r)" == "${kernel_uname_r}"  ]] && ${prefix}/sbin/depmod -a > /dev/null || : | ||||
| %postun        -n kmod-${kmodname}-${kernel_uname_r} | ||||
| [[ "$(uname -r)" == "${kernel_uname_r}"  ]] && ${prefix}/sbin/depmod -a > /dev/null || : | ||||
| [[ "\$(uname -r)" == "${kernel_uname_r}"  ]] && ${prefix}/sbin/depmod -a > /dev/null || : | ||||
| 
 | ||||
| EOF | ||||
| 	fi | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Samuel VERSCHELDE
						Samuel VERSCHELDE