Virtualmin deploys the lookup-domain service, in the unit file there is a ExecStop command, it uses invalid syntax &&, given the unit files ExecStop is not executed in a shell, the && is not valid syntax.
~# cat /etc/systemd/system/lookup-domain.service
[Unit]
Description=Daemon for quickly looking up Virtualmin servers from procmail
[Service]
ExecStart=/usr/sbin/virtualmin lookup-domain-daemon
ExecStop=test -s /var/webmin/lookup-domain-daemon.pid && /bin/kill `cat /var/webmin/lookup-domain-daemon.pid`
Type=forking
[Install]
WantedBy=multi-user.target