Copies "ironic-agent" element from DIB and addition of a new bash script to build the image using DIB. Change-Id: If392f793ed1b5d902b541fe89299648fae16e427 Task: 30072 Story: 2005114
		
			
				
	
	
		
			13 lines
		
	
	
		
			191 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			191 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
 | 
						|
    set -x
 | 
						|
fi
 | 
						|
 | 
						|
set -eu
 | 
						|
set -o pipefail
 | 
						|
 | 
						|
if [ -n "${DIB_IPA_CERT:=}" ]; then
 | 
						|
    cp $DIB_IPA_CERT $TMP_HOOKS_PATH/ipa-trusted-cert.pem
 | 
						|
fi
 |