12 lines
139 B
Text
12 lines
139 B
Text
|
|
post_install() {
|
||
|
|
udevadm trigger
|
||
|
|
udevadm control --reload-rules
|
||
|
|
}
|
||
|
|
|
||
|
|
post_upgrade() {
|
||
|
|
post_install
|
||
|
|
}
|
||
|
|
|
||
|
|
post_remove() {
|
||
|
|
post_install
|
||
|
|
}
|