 208da5f605
			
		
	
	208da5f605
	
	
	
		
			
			Turns out that updating packages last causes some pretty non-intuitive behaviour if you are trying to pin a package to a specific version. Lets just update the base RPMs first... subsequent installations should install the most updated version anyways (unless they are pinned). Also moves the package-installs script from the 00 step to 01 so we can do the update first. Co-Authored-By: Ben Nemec <bnemec@redhat.com> Change-Id: I962046cc6048e852e6582fbc579f88bb73e23fdd
		
			
				
	
	
		
			12 lines
		
	
	
		
			201 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			201 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| # Fully upgrade everything on the system (if the package manager knows how to
 | |
| # do it).
 | |
| 
 | |
| if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
 | |
|     set -x
 | |
| fi
 | |
| set -eu
 | |
| set -o pipefail
 | |
| 
 | |
| install-packages -u
 |