-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Ubuntu Installation #99
Conversation
This isn't the case as stated in https://forum.sinusbot.com/threads/upcoming-changes.8659
Added additional install of `python-is-python3` when using debian
As per talk with flyth, we don't need it anymore, due to removal of the license system
Raise debian version to 10+ Raise ubuntu version to 18.04+ Fix casing for brand name TeamSpeak
Merge #100 before this |
commit f4f8bc8 Author: Lala Sabathil <[email protected]> Date: Thu Oct 6 10:33:35 2022 +0200 Update test commit 3df4402 Author: Lala Sabathil <[email protected]> Date: Thu Oct 6 09:27:54 2022 +0200 Rework startup_test commit fd2f750 Author: Lala Sabathil <[email protected]> Date: Wed Oct 5 19:33:01 2022 +0200 [ci skip] apply code review commit cbd3af4 Author: Lala Sabathil <[email protected]> Date: Wed Oct 5 19:30:53 2022 +0200 Apply suggestions from code review Co-authored-by: Max Schmitt <[email protected]> commit 8bdb446 Author: Lala Sabathil <[email protected]> Date: Wed Oct 5 19:11:38 2022 +0200 chore: update ci badge commit 7e47dd8 Author: Lala Sabathil <[email protected]> Date: Wed Oct 5 18:58:34 2022 +0200 devops: Imrpove testing chore: add discord test chore: despawn instances after test
We need to ensure the discord bot token isn't used at the same time. This increases time, but is safer
Still doesn't work on Ubuntu 22.04 (image from http://download.proxmox.com/images/system/ubuntu-22.04-standard_22.04-1_amd64.tar.zst, OpenVZ):
I need to Another error:
|
if [[ $(cat /etc/*release | grep "PRETTY_NAME=" | sed 's/PRETTY_NAME=//g') =~ "Debian" ]]; then | ||
apt-get install -y -qq --no-install-recommends python-is-python3 | ||
fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if [[ $(cat /etc/*release | grep "PRETTY_NAME=" | sed 's/PRETTY_NAME=//g') =~ "Debian" ]]; then | |
apt-get install -y -qq --no-install-recommends python-is-python3 | |
fi | |
if [[ $(cat /etc/*release | grep "PRETTY_NAME=" | sed 's/PRETTY_NAME=//g') =~ "Debian" ]]; then | |
apt-get install -y -qq --no-install-recommends python-is-python3 | |
fi | |
if [[ $(cat /etc/*release | grep "PRETTY_NAME=" | sed 's/PRETTY_NAME=//g') =~ "Ubuntu" ]]; then | |
apt-get install -y -qq --no-install-recommends python-is-python3 | |
fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mhh have to filter for old ubuntu version
tbh I don't think i can fix this. Sorry |
Closes: #97
Closes: #91
Closes: #82
Closes: #81
Follow-up of #98, by request of @mxschmitt