2014-02-18 20:48:14 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-09-04 04:56:29 +00:00
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
|
|
set -x
|
|
|
|
fi
|
2014-03-29 03:28:22 +00:00
|
|
|
set -eu
|
|
|
|
set -o pipefail
|
|
|
|
|
2017-05-28 16:52:39 +00:00
|
|
|
# This is packages that are required for installation by other
|
|
|
|
# elements (like base) but aren't actually available for this
|
|
|
|
# platform. This is a bit of a hack
|
|
|
|
echo "dkms" > /tmp/yum-blacklist
|