mirror of
https://github.com/mirage/qubes-mirage-firewall.git
synced 2024-10-01 01:05:39 -04:00
672c82c43c
Before, we used Client_gateway for the IP address of the firewall on the client network and Firewall_uplink for its address on the uplink network. However, Qubes 4 uses the same IP address for both, so we can't separate these any longer, and there doesn't seem to be any advantage to keeping them separate anyway.
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: 5ee982b12fb3964e7d9e32ca74ce377ec068b3bbef2b6c86c131f8bb422a3134"
|
|
echo "(hashes should match for released versions)"
|