blob: 5cb481509780a608c5d4a462394dc5f1426f997b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_install() {
echo "==>> By the mere act of downloading the program, you are actually"
echo "==>> accepting the license of the program, which has been installed in:"
echo "==>> /usr/share/licenses/baudline-bin/README"
echo "==>> If you don't accept it, remove the program from your system immediately."
}
post_upgrade() {
/bin/true
}
post_remove() {
/bin/true
}
op=$1
shift
$op $*
|