#!/bin/bash

# We force the restart of systemd-resolved to workaround https://dev-eole.ac-dijon.fr/issues/26290
case $1 in
    instance)
	systemctl restart systemd-resolved.service
	;;
    *)
	;;
esac

exit 0
