#!/bin/sh

set -eu

# shellcheck disable=SC2154
. "${debci_base_dir}/backends/incus-lxc/environment.sh"

# shellcheck disable=SC2086 # intentional word splitting of backend args
# shellcheck disable=SC2154
debci-autopkgtest \
  --apt-upgrade "$@" \
  -- \
  ${incus_or_lxd} \
  ${debci_autopkgtest_args_incus_lxc:-} \
  ${debci_autopkgtest_args_lxd_lxc:-} \
  "${debci_incus_image}"
