blob: fdc35fd3384df851b88cef4955b4959d839730c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
clear
echo
echo -e "If you tend to use tor on whole network you may run: traktor_tunnel"
echo -e "\n If you need to reconfigure traktor you may run: traktor_configure\n I will do it for you now"
sleep 10s
traktor_configure
}
post_upgrade() {
clear
echo -e "If you tend to use tor on whole network you may run: traktor_tunnel"
echo -e "\n If you need to reconfigure traktor you may run: traktor_configure\n I will do it for you now"
sleep 10s
traktor_configure
}
|