mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-09 18:01:36 +00:00
Merge branch 'snap-preseed-channel-specification' of git+ssh://git.launchpad.net/~xnox/livecd-rootfs into ubuntu/master
This commit is contained in:
commit
bdec14015c
@ -631,11 +631,26 @@ snap_prepare() {
|
|||||||
snap_preseed() {
|
snap_preseed() {
|
||||||
# Preseed a snap in the image (snap_prepare must be called once prior)
|
# Preseed a snap in the image (snap_prepare must be called once prior)
|
||||||
local CHROOT_ROOT=$1
|
local CHROOT_ROOT=$1
|
||||||
|
# $2 can be in the form of snap_name/classic=track/risk/branch
|
||||||
local SNAP=$2
|
local SNAP=$2
|
||||||
local SNAP_NAME=${SNAP%/*}
|
# strip CHANNEL specification
|
||||||
# Per Ubuntu policy, all seeded snaps (with the exception of the core
|
local SNAP_NAME=${SNAP%=*}
|
||||||
# snap) must pull from stable/ubuntu-$(release_ver) as their channel.
|
# strip /classic confinement
|
||||||
local CHANNEL=${3:-"stable/ubuntu-$(release_ver)"}
|
SNAP_NAME=${SNAP_NAME%/*}
|
||||||
|
# Seed from the specified channel (e.g. core18 latest/stable)
|
||||||
|
# Or Channel endcoded in the snap name (e.g. lxd=4.0/stable/ubuntu-20.04)
|
||||||
|
# Or Ubuntu policy default channel latest/stable/ubuntu-$(release_ver)
|
||||||
|
local CHANNEL=$3
|
||||||
|
if [ -z "$CHANNEL" ]; then
|
||||||
|
case $2 in
|
||||||
|
*=*)
|
||||||
|
CHANNEL=${2#*=}
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
CHANNEL="stable/ubuntu-$(release_ver)"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
if [ ! -e "$CHROOT_ROOT/var/lib/snapd/seed/assertions/model" ]; then
|
if [ ! -e "$CHROOT_ROOT/var/lib/snapd/seed/assertions/model" ]; then
|
||||||
echo "ERROR: Snap model assertion not present, snap_prepare must be called"
|
echo "ERROR: Snap model assertion not present, snap_prepare must be called"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user