apt-ostree/apt_ostree/constants.py
Charles Short 1db321e4ce Update debian bookworm config
Update debian bookworm configuration to be more useful to test for a
reproducable developer environment. I use the configuration in this
commit to create a developer environment to create new features and
test for regressions.

The following configuration does the following:

- Configure Debian base system.
- Configure Networking
- Run firstboot service that creates a user,
  configures, grub, etc.
- Install Debian packages that are required to run
  apt-ostree on a virtual machine.
- Upgrade the size of the virtual machine disk size
  to 20G.

Test Plan
PASSED Install apt-ostree from git repo.
PASSED Build apt-ostree image from configuration.

Story: 2010867
Task: 48556

Change-Id: Ic3704bba1039248ff30f2bcb3956bec448782dc7
Signed-off-by: Charles Short <charles.short@windriver.com>
2023-09-25 12:30:51 +00:00

21 lines
314 B
Python

"""
Copyright (c) 2023 Wind River Systems, Inc.
SPDX-License-Identifier: Apache-2.0
"""
VERSION = "0.1"
# packages to exclude from systemd-tmpfiles check.
excluded_packages = [
"ucf",
"base-files",
"systemd",
"init-system-helpers",
"dbus",
"policykit-1",
"polkitd",
"debconf"
]