nixos/tests: fix upnp under network-online dep fix

This commit is contained in:
Jade Lovelace 2023-10-03 01:01:59 -07:00
parent 5714c8465a
commit 42cda3b36b

View File

@ -81,11 +81,13 @@ in
start_all()
# Wait for network and miniupnpd.
router.systemctl("start network-online.target")
router.wait_for_unit("network-online.target")
# $router.wait_for_unit("nat")
router.wait_for_unit("${if useNftables then "nftables" else "firewall"}.service")
router.wait_for_unit("miniupnpd")
client1.systemctl("start network-online.target")
client1.wait_for_unit("network-online.target")
client1.succeed("upnpc -a ${internalClient1Address} 9000 9000 TCP")