22ef95c1a1
This action has been reordered so cleanup can occur before copy to blockdev occurs. Documentation has been added about the ordering of this element in relation to cleanup actions as well. Change-Id: I3f9334a3669ee588d7fa7129202c97fa22fdb050
11 lines
211 B
Bash
Executable File
11 lines
211 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
package-uninstalls -d $(dirname $0)
|
|
package-installs-v2 --phase post-install.d --uninstall /tmp/package-installs.json
|