Merge "Add iscsi-boot element"

This commit is contained in:
Zuul 2018-06-15 07:38:38 +00:00 committed by Gerrit Code Review
commit 725d469c88
4 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,13 @@
==========
iscsi-boot
==========
Handles configuration for the disk to be capable of serving as
a remote root filesystem through iSCSI. Currently, this element
only configures Ubuntu/Debian images.
It performs the following actions:
* Installs the ``open-iscsi`` package.
* Creates the ``etc/iscsi/iscsi.initramfs`` configuration file and sets
``ISCSI_AUTO=true`` within it.
* Updates the initramfs to apply the changes.

View File

@ -0,0 +1 @@
package-installs

View File

@ -0,0 +1,2 @@
open-iscsi:
phase: install.d

View File

@ -0,0 +1,13 @@
#!/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