mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-15 08:28:17 +00:00
12 lines
209 B
Bash
12 lines
209 B
Bash
#!/bin/sh -e
|
|
|
|
case "$1" in
|
|
purge)
|
|
rm -f /etc/udev/rules.d/70-persistent-*.rules
|
|
rmdir --ignore-fail-on-non-empty /etc/udev/rules.d/ 2> /dev/null || true
|
|
rm -f /lib/udev/hwdb.bin
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|