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
11 lines
192 B
Bash
Executable File
11 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-1} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
package-installs -d $(dirname $0)
|
|
package-installs-v2 --phase install.d /tmp/package-installs.json
|