mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-13 06:17:08 +00:00
22 lines
330 B
Plaintext
22 lines
330 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
case ${PASS:-} in
|
||
|
minimal.live)
|
||
|
;;
|
||
|
*)
|
||
|
exit 0
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
mkdir -p "/etc/initramfs-tools/conf.d"
|
||
|
|
||
|
cat <<EOF > /etc/initramfs-tools/conf.d/casperize.conf
|
||
|
export CASPER_GENERATE_UUID=1
|
||
|
EOF
|
||
|
|
||
|
cat <<EOF > /etc/initramfs-tools/conf.d/default-layer.conf
|
||
|
LAYERFS_PATH=${PASS}.squashfs
|
||
|
EOF
|