blob: 54bbbefb7bb66cc4b4aed06a5fdc39a36164da3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
udevadm control --reload-rules
udevadm trigger
echo -e "\033[32mYou may need to re-plug your device to complete the change.\033[0m"
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
|