mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-06-03 10:50:20 +00:00
Tests: - Build the Debian package and run autopkgtest with qemu backend. The test is passed. - Revert the recent fix for loading icons. Build the Debian package and run autopkgtests again. It is failed due to maximum redirects followed. Signed-off-by: James Valleroy <jvalleroy@mailbox.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
17 lines
437 B
Bash
17 lines
437 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Wait for FreedomBox setup to complete.
|
|
sleep 30
|
|
|
|
journalctl --unit=plinth --unit=freedombox-privileged
|
|
|
|
# Get FreedomBox status
|
|
curl --location --cookie "" --fail --write-out "%{response_code}" --insecure \
|
|
--stderr - https://localhost/freedombox/status/
|
|
|
|
# Access FreedomBox interface
|
|
curl --location --cookie "" --fail --write-out "%{response_code}" --insecure \
|
|
--stderr - https://localhost/freedombox/
|