mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	Merge pull request #27033 from zefciu/lvm-fix
Automatic merge from submit-queue Fixed an error in lvm bash script The space in this script is an obvious typo and caused an error (trying to call volume_id as command).
This commit is contained in:
		@@ -49,7 +49,7 @@ attach() {
 | 
			
		||||
	VG=$(echo $1|jq -r '.volumegroup')
 | 
			
		||||
 | 
			
		||||
	# LVM substitutes - with --
 | 
			
		||||
	VOLUMEID= `echo $VOLUMEID|sed s/-/--/g`
 | 
			
		||||
	VOLUMEID=`echo $VOLUMEID|sed s/-/--/g`
 | 
			
		||||
	VG=`echo $VG|sed s/-/--/g`
 | 
			
		||||
 | 
			
		||||
	DMDEV="/dev/mapper/${VG}-${VOLUMEID}"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user