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