mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-06-02 21:52:28 +00:00
mount a filesystem with label autoinstall at /autoinstall for live-server
This is one of the ways an autoinstall file can be provided.
This commit is contained in:
parent
19f5745672
commit
377e7b4ddd
@ -42,14 +42,22 @@ setup_mountpoint binary/boot/squashfs.dir
|
|||||||
# to a new VT when there is no device there (LP: #1750117).
|
# to a new VT when there is no device there (LP: #1750117).
|
||||||
# It would be better to have this in ../includes.binary/overlay but
|
# It would be better to have this in ../includes.binary/overlay but
|
||||||
# you can't have backslashes in filenames in bzr branches!
|
# you can't have backslashes in filenames in bzr branches!
|
||||||
DEVICE_UNIT_NAME='dev-disk-by\x2duuid-00c629d6\x2d06ab\x2d4dfd\x2db21e\x2dc3186f34105d.device'
|
ANSWERS_DEVICE_UNIT='dev-disk-by\x2duuid-00c629d6\x2d06ab\x2d4dfd\x2db21e\x2dc3186f34105d.device'
|
||||||
mkdir -p "$INSTALLER_ROOT/etc/systemd/system/$DEVICE_UNIT_NAME.d"
|
mkdir -p "$INSTALLER_ROOT/etc/systemd/system/$ANSWERS_DEVICE_UNIT.d"
|
||||||
cat > "$INSTALLER_ROOT/etc/systemd/system/$DEVICE_UNIT_NAME.d/override.conf" <<EOF
|
cat > "$INSTALLER_ROOT/etc/systemd/system/$ANSWERS_DEVICE_UNIT.d/override.conf" <<EOF
|
||||||
[Unit]
|
[Unit]
|
||||||
JobRunningTimeoutSec=0s
|
JobRunningTimeoutSec=0s
|
||||||
Wants=subiquity_config.mount
|
Wants=subiquity_config.mount
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
AUTOINSTALL_DEVICE_UNIT='dev-disk-by\x2dlabel-default.device'
|
||||||
|
mkdir -p "$INSTALLER_ROOT/etc/systemd/system/$AUTOINSTALL_DEVICE_UNIT.d"
|
||||||
|
cat > "$INSTALLER_ROOT/etc/systemd/system/$AUTOINSTALL_DEVICE_UNIT.d.d/override.conf" <<EOF
|
||||||
|
[Unit]
|
||||||
|
JobRunningTimeoutSec=0s
|
||||||
|
Wants=subiquity_autoinstall.mount
|
||||||
|
EOF
|
||||||
|
|
||||||
# Prepare installer layer.
|
# Prepare installer layer.
|
||||||
|
|
||||||
# Install casper for live session magic.
|
# Install casper for live session magic.
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
[Mount]
|
||||||
|
What=/dev/disk/by-label/autoinstall
|
||||||
|
Where=/autoinstall
|
||||||
|
Type=ext4
|
Loading…
x
Reference in New Issue
Block a user