#!/bin/sh
set -eu

out=$(systemd-analyze verify /lib/systemd/system/ahcpd.service 2>&1) || true
if echo "$out" | grep -i ahcpd; then
    exit 1
fi
