mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-23 19:31:31 +00:00
9 lines
160 B
Bash
Executable File
9 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
mkdir -p "chroot/etc/initramfs-tools/conf.d"
|
|
cat > chroot/etc/initramfs-tools/conf.d/casperize.conf <<EOF
|
|
export CASPER_GENERATE_UUID=1
|
|
EOF
|