blob: 4f49b3ee566a4a65e5eb18fb36050f8c9a63c485 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
echo "====> Please note:"
echo " In case you have purchased a local license (and not a network"
echo " license), the license is only accepted if the software is run"
echo " from a place which is via wine configured as a local hard disk,"
echo " and not as a network drive."
echo "<==== If you want to check or change, run winecfg."
}
post_upgrade() {
post_install "$@"
}
post_remove() {
true
}
|