91e3b72a23
This patch adds an element that handles the configuration for creating a disk capable of being a remote root filesystem through iSCSI on Ubuntu and Debian images. Change-Id: Ibf9e39d2bdab530106015f156d23d28029d12b0d Closes-bug: #1716794
14 lines
243 B
Bash
Executable File
14 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if [[ $DISTRO_NAME = "ubuntu" || $DISTRO_NAME = "debian" ]]; then
|
|
echo "ISCSI_AUTO=true" > /etc/iscsi/iscsi.initramfs
|
|
update-initramfs -u
|
|
fi
|