blob: 8678937c7bed079de59b829e421dbd56de7e47d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_install() {
cat << EOF
----------------------------------------------------------------------------------
Usage of this package implies acceptance of the TOC of the R&S Royalty Free Software license. A copy of the license is provided with this package at /usr/share/licenses/rs-visa/LICENSE.
----------------------------------------------------------------------------------
EOF
udevadm control --reload-rules;
}
post_upgrade() {
true;
}
post_remove() {
udevadm control --reload-rules;
}
|