mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 04:37:29 +00:00
14 lines
319 B
Bash
Executable File
14 lines
319 B
Bash
Executable File
#!/bin/bash -ex
|
|
# vi: ts=4 noexpandtab
|
|
#
|
|
# Generate the rootfs.tar.gz and manifest
|
|
|
|
if [ -n "$SUBARCH" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
dpkg-query --admindir=binary/boot/filesystem.dir/var/lib/dpkg -W > livecd.ubuntu-cpc.rootfs.manifest
|
|
|
|
(cd "binary/boot/filesystem.dir/" && tar -c *) | \
|
|
xz > "livecd.ubuntu-cpc.rootfs.tar.xz"
|