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"