onlykey-gui/onlykey.install
Kiril Vladimiroff 9cc507d7df
Reload udev rules after (un)install and upgrade
Otherwise users have to reboot before being able to actually use the
application.
2019-08-19 15:21:32 +03:00

12 lines
136 B
Plaintext

post_install() {
udevadm control --reload
}
post_upgrade() {
udevadm control --reload
}
post_remove() {
udevadm control --reload
}