KasperskyLab/TinyCheck

Unable to install Zeek from install.sh on Ubuntu 20.04

leandreSL opened this issue · 1 comments

I tried to re-install TinyCheck on a Ubuntu 20.04 VM (mainly for using the analysis engine) and the links associated with the installation of Zeek were not working : see these lines

I checked Zeek binary and updated install.sh with this code to fix it:

if [[ $distrib == "debian" ]]; then
         echo "deb http://download.opensuse.org/repositories/security:/zeek/Debian_$version/ /" > /etc/apt/sources.list.d/security:zeek.list
         wget -nv "https://download.opensuse.org/repositories/security:zeek/Debian_$version/Release.key" -O Release.key
elif [[ $distrib == "ubuntu" ]]; then
         echo "deb http://download.opensuse.org/repositories/security:/zeek/xUbuntu_$version/ /" > /etc/apt/sources.list.d/security:zeek.list
         wget -nv "https://download.opensuse.org/repositories/security:zeek/xUbuntu_$version/Release.key" -O Release.key

Hello, thanks you very much, I'm gonna to look at it and update the install.sh script this afternoon!