summarylogtreecommitdiffstats
path: root/yubikey-personalization.install
blob: 2dba3586e411a162251ea0573d48904d4bf7f3b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

post_upgrade() {
	if systemctl -q is-active systemd-udevd; then
		udevadm control --reload-rules
	fi
}

post_install() {
	post_upgrade
}

post_remove() {
	post_upgrade
}