From 42cff1635f2e594f8d88ed3e8fe34cb49cfd3582 Mon Sep 17 00:00:00 2001 From: gerblesh <101901964+gerblesh@users.noreply.github.com> Date: Sun, 24 Nov 2024 11:37:15 -0800 Subject: [PATCH] update --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index dc9da9c..e42d5c4 100644 --- a/justfile +++ b/justfile @@ -72,12 +72,12 @@ container-test: #!/usr/bin/env bash set -eou pipefail - podman run -d --replace --name ublue-update-test --security-opt label=disable --device /dev/fuse:rw --privileged test-container + podman run -d --replace --name ublue-update-test --security-opt label=disable --device /dev/fuse:rw --privileged --systemd true test-container while [[ "$(podman exec ublue-update-test systemctl is-system-running)" != "running" && "$(podman exec ublue-update-test systemctl is-system-running)" != "degraded" ]]; do echo "Waiting for systemd to finish booting..." sleep 1 done - podman exec -it ublue-update-test systemd-run --user --machine podman@ --pipe --quiet sudo /usr/bin/ublue-update --dry-run + podman exec -t ublue-update-test systemd-run --user --machine podman@ --pipe --quiet sudo /usr/bin/ublue-update --dry-run podman rm -f ublue-update-test clean: rm -rf "$UBLUE_ROOT"