blob: 9acd0740d13ea588cdd7b844300dafb5c3978df0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
post_install() {
cat <<-MSG
>>> iReasoning MIB Browser - Software License Agreement (SLA)
This software is freeware (Personal Edition) for private, non-commercial use.
By installing and using this software, you confirm that you have read and
accept the terms of the Software License Agreement.
The full SLA is installed at:
/usr/share/licenses/imibrowser/SLA
You can also review it online at:
https://www.ireasoning.com/downloadmibbrowserlicense.shtml
If you do NOT agree to the terms, remove this package immediately.
MSG
}
post_upgrade() {
post_install
}
# vim:set ts=2 sw=2 et:
|