mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-13 06:17:08 +00:00
39 lines
1001 B
Plaintext
39 lines
1001 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
case ${PASS:-} in
|
||
|
base.live)
|
||
|
;;
|
||
|
*)
|
||
|
exit 0
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
. config/binary
|
||
|
. config/functions
|
||
|
|
||
|
env SNAPPY_STORE_NO_CDN=1 snap known --remote model series=16 brand-id=canonical model=ubuntu-core-24-amd64 > config/ubuntu-core-24-amd64.model
|
||
|
|
||
|
env SNAPPY_STORE_NO_CDN=1 snap prepare-image \
|
||
|
config/ubuntu-core-24-amd64.model --snap console-conf chroot
|
||
|
mv chroot/system-seed/systems/* chroot/system-seed/systems/ubuntu-core-24-amd64
|
||
|
rsync -av chroot/system-seed/{systems,snaps} chroot/var/lib/snapd/seed
|
||
|
rm -rf chroot/system-seed
|
||
|
|
||
|
cat <<-EOF > config/edge.catalog-in.yaml
|
||
|
name: "Ubuntu Core 24"
|
||
|
description: >-
|
||
|
Ubuntu Core.
|
||
|
id: ubuntu-core
|
||
|
type: null
|
||
|
variant: core
|
||
|
locale_support: none
|
||
|
snapd_system_label: ubuntu-core-24-amd64
|
||
|
EOF
|
||
|
PROJECT_FULL=$PROJECT${SUBARCH:+-$SUBARCH}
|
||
|
usc_opts="--output livecd.${PROJECT_FULL}.install-sources.yaml \
|
||
|
--template config/edge.catalog-in.yaml \
|
||
|
--size 0"
|
||
|
/usr/share/livecd-rootfs/update-source-catalog $usc_opts
|