-
Notifications
You must be signed in to change notification settings - Fork 44
/
uninstall.sh
executable file
·93 lines (78 loc) · 2.19 KB
/
uninstall.sh
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/bin/bash
# Hailo Tappas uninstall script
# requires `sudo` privileges
set -e
#############################################
readonly INSTALLATION_DIR=/opt/hailo/tappas
readonly HAILO_USER_DIR=${HOME}/.hailo/tappas
readonly TAPPAS_BASH_ENV=${HAILO_USER_DIR}/tappas_env
readonly VENV_NAME=hailo_tappas_venv
readonly GSTREAMER_CACHE=${HOME}/.cache/gstreamer-1.0
# indication that older version of Tappas (pre-3.24) exists on the host
readonly LIB_DIR=/usr/lib/$(uname -m)-linux-gnu
readonly OLD_TAPPAS_INSTALLATION=${LIB_DIR}/gstreamer-1.0/libgsthailotools.so
readonly OLD_TAPPAS_LIBS=(
"libgsthailometa.so"
"libhailo_tracker.so"
"libhailo_cv_singleton.so"
"libhailo_gst_image.so"
"libgsthailotools.so"
"libgsthailopython.so"
"libgstsharktracers.so"
)
readonly OLD_TAPPAS_FILES=(
"${LIB_DIR}/pkgconfig/gsthailometa.pc"
"/usr/include/gsthailometa"
"/usr/bin/parse_hef"
)
#############################################
function removed_msg(){
echo "Hailo Tappas was removed successfully."
echo "To unset Tappas environment variables, please relogin or reboot the PC."
exit 0
}
function not_removed_msg(){
echo "Hailo Tappas was not removed."
exit 1
}
function check_tappas_installed(){
rm -rf ${GSTREAMER_CACHE} && gst-inspect-1.0 hailotools &> /dev/null
}
function remove_so(){
sudo rm -rf ${INSTALLATION_DIR}
}
function clean_tappas_user_env(){
rm -rf ${TAPPAS_BASH_ENV}
}
function remove_tappas_venv(){
pushd $(dirname $0) > /dev/null
rm -rf ${VENV_NAME}
}
function remove_old_tappas_files(){
# removing tappas file from system paths
# relevant for Tappas pre-v3.24
for file in ${OLD_TAPPAS_FILES[@]}
do
sudo rm -rf $file
done
for lib in ${OLD_TAPPAS_LIBS[@]}
do
sudo find ${LIB_DIR} -name "${lib}*" -delete
done
}
function main(){
if [ -f ${OLD_TAPPAS_INSTALLATION} ]; then
echo "Warning: Older version of Hailo Tappas found - removing..."
remove_old_tappas_files
fi
remove_so
remove_tappas_venv
clean_tappas_user_env
check_tappas_installed && return_code=$?
if [[ $return_code == 0 ]]; then
not_removed_msg
else
removed_msg
fi
}
main