blob: 66926ffa66f5e12d5711a8e9bc437c543a467398 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Print deprecation notice after installation or upgrade
post_install() {
printf "\e[1;31m"
echo "carvel-tools is deprecated and will be removed in the future."
printf "\e[0m"
echo "Please install the following packages instead:"
echo " - imgpkg (imgpkg-bin)"
echo " - kapp (kapp-bin)"
echo " - kbld (kbld-bin)"
echo " - kctrl (kctrl-bin)"
echo " - kwt (kwt-bin)"
echo " - vendir (vendir-bin)"
echo " - ytt (ytt-bin)"
}
post_upgrade() {
printf "\e[1;31m"
echo "carvel-tools is deprecated and will be removed in the future."
printf "\e[0m"
echo "Please install the following packages instead:"
echo " - imgpkg (imgpkg-bin)"
echo " - kapp (kapp-bin)"
echo " - kbld (kbld-bin)"
echo " - kctrl (kctrl-bin)"
echo " - kwt (kwt-bin)"
echo " - vendir (vendir-bin)"
echo " - ytt (ytt-bin)"
}
|