a2d4af9541
Allows for composable builds from a minimal source. Change-Id: I16f560ca4b1737c0928f3f3b15ea2580df820e97 Closes-Bug: 1539272
16 lines
306 B
Bash
Executable File
16 lines
306 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# gentoo
|
|
if [[ "${DISTRO_NAME}" == "gentoo" ]]; then
|
|
rc-update add cloud-config default
|
|
rc-update add cloud-final default
|
|
rc-update add cloud-init-local default
|
|
rc-update add cloud-init default
|
|
fi
|