From b117739c49436842ca6db2c5da61af6d94ba8b79 Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Sat, 31 Aug 2019 12:45:55 +0000 Subject: [PATCH] Add policykit-1 to rootfs --- tools/qemu-debian-img/14.04/Dockerfile | 3 ++- tools/qemu-debian-img/Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/qemu-debian-img/14.04/Dockerfile b/tools/qemu-debian-img/14.04/Dockerfile index 8bb6f23..a5c6af4 100644 --- a/tools/qemu-debian-img/14.04/Dockerfile +++ b/tools/qemu-debian-img/14.04/Dockerfile @@ -25,7 +25,8 @@ ENV RELEASE=trusty RUN mkdir $IMAGEDIR # Must be executed with --privileged because of /dev/loop -CMD debootstrap --include=openssh-server $RELEASE $TMPDIR $REPOSITORY && \ +CMD debootstrap --include=openssh-server,policykit-1 \ + $RELEASE $TMPDIR $REPOSITORY && \ /shared/setup.sh $TMPDIR && \ qemu-img create $IMAGE 2G && \ mkfs.ext4 -F $IMAGE && \ diff --git a/tools/qemu-debian-img/Dockerfile b/tools/qemu-debian-img/Dockerfile index ecfa1b1..40c4ec0 100644 --- a/tools/qemu-debian-img/Dockerfile +++ b/tools/qemu-debian-img/Dockerfile @@ -26,7 +26,8 @@ ENV RELEASE=bionic RUN mkdir $IMAGEDIR # Must be executed with --privileged because of /dev/loop -CMD debootstrap --include=openssh-server $RELEASE $TMPDIR $REPOSITORY && \ +CMD debootstrap --include=openssh-server,policykit-1 \ + $RELEASE $TMPDIR $REPOSITORY && \ /shared/setup.sh $TMPDIR && \ qemu-img create $IMAGE 2G && \ mkfs.ext4 -F $IMAGE && \