mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-13 06:17:08 +00:00
21 lines
339 B
Bash
Executable File
21 lines
339 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -eu
|
|
|
|
case ${PASS:-} in
|
|
*.live)
|
|
;;
|
|
*)
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
mkdir -p /etc/initramfs-tools/conf.d/
|
|
cat <<EOF > /etc/initramfs-tools/conf.d/default-layer.conf
|
|
LAYERFS_PATH=${PASS}.squashfs
|
|
EOF
|
|
|
|
if which glib-compile-schemas >/dev/null 2>&1; then
|
|
glib-compile-schemas /usr/share/glib-2.0/schemas/
|
|
fi
|