#!/bin/bash set -euo pipefail source "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)/base-test.sh" dns="$ROOT/bin/omarchy-dns" hardware_network="$ROOT/install/hardware/network.sh" migration="$ROOT/migrations/1782002156.sh" ! grep -F 'systemd-networkd' "$dns" >/dev/null || fail "omarchy-dns no longer restarts systemd-networkd" grep -F 'NetworkManager/conf.d/20-omarchy-dns.conf' "$dns" >/dev/null grep -F '[global-dns-domain-*]' "$dns" >/dev/null grep -F 'ipv4.ignore-auto-dns yes' "$dns" >/dev/null grep -F 'ipv4.ignore-auto-dns no' "$dns" >/dev/null grep -F 'nmcli device reapply' "$dns" >/dev/null grep -F 'nmcli general reload conf' "$dns" >/dev/null grep -F 'nmcli general reload dns-full' "$dns" >/dev/null if grep -F 'nmcli general reload conf,dns-full' "$dns" >/dev/null; then fail "omarchy-dns must not push DNS before reapplying active profiles" fi pass "omarchy-dns configures DNS through NetworkManager" grep -F 'systemd-networkd.service' "$hardware_network" >/dev/null grep -F 'systemd-networkd.socket' "$hardware_network" >/dev/null grep -F '20-wlan.network' "$hardware_network" >/dev/null grep -F 'omarchy-networkd-retired' "$hardware_network" >/dev/null pass "hardware setup retires archinstall networkd state" grep -F 'OMARCHY_UPGRADE_TO_QUATTRO_LIVE' "$migration" >/dev/null grep -F 'systemctl disable --now "$unit"' "$migration" >/dev/null grep -F 'systemctl stop systemd-networkd.service' "$migration" >/dev/null grep -F 'NetworkManager.service' "$migration" >/dev/null grep -F '20-wlan.network' "$migration" >/dev/null pass "migration repairs upgraded systems with networkd still active"