d0ce0d34e5
Autoremove can touch packages, that are assumed to be present for post-install step. A good example is dkms, which is dropped in install.d, but dkms element try to use it in post-install step. This results in the following log [1] [1] http://paste.openstack.org/show/797809/ Change-Id: I635af230c6b250fee273039935cf19506e83b3d1
10 lines
115 B
Bash
Executable File
10 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-1} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
apt-get -y autoremove
|