#!/bin/sh set -e case $1 in (remove) rm -f /run/qemu/Debian_1_7.2+dfsg-7+deb12u7/block-*.so;; esac case $1 in (purge) if systemctl is-active -q run-qemu.mount; then systemctl stop run-qemu.mount || true; fi; rm -rf "/run/qemu";; esac