mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-05 16:01:34 +00:00
Imported 2.620
No reason for CPC update specified.
This commit is contained in:
parent
21fd51079e
commit
01a7855ffd
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
|||||||
|
livecd-rootfs (2.620) eoan; urgency=medium
|
||||||
|
|
||||||
|
* Limit the lxd group to images with an installer; it's less appropriate
|
||||||
|
for random tarball images, which are configured in ways we don't know.
|
||||||
|
|
||||||
|
-- Adam Conrad <adconrad@ubuntu.com> Sun, 13 Oct 2019 23:15:02 -0600
|
||||||
|
|
||||||
livecd-rootfs (2.619) eoan; urgency=medium
|
livecd-rootfs (2.619) eoan; urgency=medium
|
||||||
|
|
||||||
* Subiquity: install linux-firmware in the installer layer, to make
|
* Subiquity: install linux-firmware in the installer layer, to make
|
||||||
|
@ -988,7 +988,12 @@ echo "BUILDSTAMP=\"$NOW\"" >> config/binary
|
|||||||
echo "SUBPROJECT=\"${SUBPROJECT:-}\"" >> config/binary
|
echo "SUBPROJECT=\"${SUBPROJECT:-}\"" >> config/binary
|
||||||
echo "LB_DISTRIBUTION=\"$SUITE\"" >> config/binary
|
echo "LB_DISTRIBUTION=\"$SUITE\"" >> config/binary
|
||||||
|
|
||||||
if [ $PROJECT != ubuntu-cpc ]; then
|
case $PROJECT in
|
||||||
|
ubuntu-cpc|ubuntu-core|ubuntu-base|base)
|
||||||
|
# ubuntu-cpc gets this added in 025-create-groups.chroot, and we do
|
||||||
|
# not want this group in projects that are effectively just chroots
|
||||||
|
;;
|
||||||
|
*)
|
||||||
# We add the lxd group at image build time so that the default user
|
# We add the lxd group at image build time so that the default user
|
||||||
# created by the installer or cloud-init is added to it (cloud-init
|
# created by the installer or cloud-init is added to it (cloud-init
|
||||||
# will create any group the user is configured to be added to, but as
|
# will create any group the user is configured to be added to, but as
|
||||||
@ -1000,7 +1005,8 @@ if [ $PROJECT != ubuntu-cpc ]; then
|
|||||||
echo "Adding lxd group..."
|
echo "Adding lxd group..."
|
||||||
addgroup --system --quiet lxd
|
addgroup --system --quiet lxd
|
||||||
EOF
|
EOF
|
||||||
fi
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
case $ARCH+$SUBARCH in
|
case $ARCH+$SUBARCH in
|
||||||
armhf+raspi2|armhf+raspi3|arm64+raspi3)
|
armhf+raspi2|armhf+raspi3|arm64+raspi3)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user