blob: 71cd89b35fa9840a45c4b09277108a7150f8d509 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
echo "==> You must run at least once \"debtap -u\""
echo "with root privileges (preferably recently),"
echo "before running this script"
echo
echo "==> Syntax: debtap [option] package_filename"
echo
echo "==> Run \"debtap -h\" for help"
}
post_upgrade() {
post_install
}
post_remove() {
echo "==> /var/cache/debtap has not been removed"
}
|