mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 20:57:29 +00:00
Initiator Name at first iscsid run for cloud images to ensure it is unique (LP: #1444992).
10 lines
245 B
Bash
Executable File
10 lines
245 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Set InitiatorName to be runtime generated when iscsid first starts, so
|
|
# that each cloud image gets a unique value
|
|
#
|
|
|
|
if [ -f /etc/iscsi/initiatorname.iscsi ]; then
|
|
echo "GenerateName=yes" > /etc/iscsi/initiatorname.iscsi
|
|
fi
|