mirror of
https://github.com/mirage/qubes-mirage-firewall.git
synced 2024-10-01 01:05:39 -04:00
d7b376d373
This is a work-around to get DHCP working with HVM domains. See: https://github.com/QubesOS/qubes-issues/issues/5022
10 lines
410 B
Bash
Executable File
10 lines
410 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
echo Building Docker image with dependencies..
|
|
docker build -t qubes-mirage-firewall .
|
|
echo Building Firewall...
|
|
docker run --rm -i -v `pwd`:/home/opam/qubes-mirage-firewall qubes-mirage-firewall
|
|
echo "SHA2 of build: $(sha256sum qubes_firewall.xen)"
|
|
echo "SHA2 last known: dbf7460fa628bea5d132a96fe7ba2cd832e3d9da7005ae74f6a124957f4848ea"
|
|
echo "(hashes should match for released versions)"
|