From d3f6ae206ed15350d2b4400b2336527582011003 Mon Sep 17 00:00:00 2001 From: qoijjj <129108030+qoijjj@users.noreply.github.com> Date: Sat, 18 May 2024 15:08:52 -0700 Subject: [PATCH] feat: set distrobox/toolbox to default to signed images (#280) --- config/files/usr/etc/containers/toolbox.conf | 18 ++++++++++++++++++ config/files/usr/etc/distrobox/distrobox.conf | 1 + 2 files changed, 19 insertions(+) create mode 100644 config/files/usr/etc/containers/toolbox.conf create mode 100644 config/files/usr/etc/distrobox/distrobox.conf diff --git a/config/files/usr/etc/containers/toolbox.conf b/config/files/usr/etc/containers/toolbox.conf new file mode 100644 index 0000000..9b0c171 --- /dev/null +++ b/config/files/usr/etc/containers/toolbox.conf @@ -0,0 +1,18 @@ + +[general] +# Create a toolbox container for a different operating system distro than the +# host. Cannot be used with 'image'. +## distro = "fedora" + +# Create a toolbox container for a different operating system release than the +# host. Cannot be used with 'image'. +## release = "33" + +# Change the name of the image used to create the toolbox container. This is +# useful for creating containers from custom-built images. Cannot be used with +# 'distro' or 'release'. +# +# If the name does not contain a registry, the local image storage will be +# consulted, and if it's not present there then it will be pulled from a +# suitable remote registry. +image = "ghcr.io/ublue-os/fedora-toolbox:latest" \ No newline at end of file diff --git a/config/files/usr/etc/distrobox/distrobox.conf b/config/files/usr/etc/distrobox/distrobox.conf new file mode 100644 index 0000000..f722818 --- /dev/null +++ b/config/files/usr/etc/distrobox/distrobox.conf @@ -0,0 +1 @@ +container_image_default="ghcr.io/ublue-os/fedora-distrobox:latest" \ No newline at end of file