blob: 60b2bbd689f452be6ab347b802a01a594da1802a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
echo ""
echo "Lin-HaBu's license is pubished on the following website:"
echo "https://www.mcrichter.de/Seiten/Deutsch/Programme/HaBu/Allgemein.html"
echo "You have to agree to use the program."
echo ""
echo "Lin-HaBu's Lizenz ist auf der folgenden Webseite veröffentlicht:"
echo "https://www.mcrichter.de/Seiten/Deutsch/Programme/HaBu/Allgemein.html"
echo "Sie erklären sich damit einverstanden, indem Sie das Programm benutzen."
}
post_upgrade() {
post_install
}
post_remove() {
rm -rf /opt/Lin-HaBu
}
|