kasmtech / workspaces-images

Other
731 stars 241 forks source link

TOR Installation URL no longer working in Ubuntu #84

Closed GadgetGeekNI closed 1 year ago

GadgetGeekNI commented 1 year ago

TOR_URL is returning empty when trying to build my own image using the examples.

Below is a BB pipeline output.

TOR_URL=

I can confirm in a bash CLI, $TOR_URL is returning empty.

GadgetGeekNI commented 1 year ago

I found a fix that seems to have worked on Ubuntu Focal.

in file install_torbrowser.sh

Replace line 12 TOR_URL=$(curl -q https://www.torproject.org/download/ | grep downloadLink | grep linux64 | sed 's/.*href="//g' | cut -d '"' -f1 | head -1)

With TOR_URL=$(curl -q https://www.torproject.org/download/ | grep downloadLink | grep linux | sed 's/.*href="//g' | cut -d '"' -f1 | head -1)

j-travis commented 1 year ago

Thank you. This issue has been resolved and merged. Our rolling pipelines will pick up the changes tonight and updated rolling tags will be produced with the latest version of TorBrowser.