mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-11 05:07:09 +00:00
- create device-azure.tar.gz during the build that includes the packages for the azure cloud * live-build/ubuntu-core/hooks/400-create-apt-get-warning.binary: - display helpful message to use snappy when a user tries to use apt-get on a snappy system * live-build/ubuntu-core/hooks/500-move-kernel-to-device-tar.binary: - do the device-azure.tar.gz extraction here * live-build/ubuntu-core/hooks/12-add-docker-user.chroot: - ensure docker group is used
12 lines
248 B
Bash
12 lines
248 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# we want a really minimal image
|
|
apt-get remove -y locales
|
|
|
|
# this will also get rid of libqt5 - this can be removed once
|
|
# system-image-cli in vivid does no longer depend on
|
|
# ubuntu-download-manager
|
|
apt-get remove -y libicu52
|