Skip to content
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

installer.sh could work on ubuntu-like systems #390

Closed
funduck opened this issue Oct 29, 2020 · 2 comments
Closed

installer.sh could work on ubuntu-like systems #390

funduck opened this issue Oct 29, 2020 · 2 comments
Assignees

Comments

@funduck
Copy link

funduck commented Oct 29, 2020

Sorry for creating issue here, but I could not find better place to propose an installation script update

installer.sh

On Linux Mint I run as said in README

curl -L https://tarantool.io/installer.sh | sudo -E bash -s -- --repo-only

script says Unfortunately, your operating system is not supported by this script
it can be fixed, change

      os=$(. /etc/os-release && echo $ID)

for

      os=$(. /etc/os-release && echo $ID)

      # fix for UBUNTU like systems
      os_like=$(. /etc/os-release && echo $ID_LIKE)
      [ $os_like = "ubuntu" ] && os="ubuntu"

and further

        ver_id=$(. /etc/os-release && echo $VERSION_ID)

        # fix for UBUNTU like systems
        ver_codename=$(. /etc/os-release && echo $UBUNTU_CODENAME)
        if [ ! -z "$ver_codename" ]; then
          dist="$ver_codename"
        elif [ $ver_id = "14.04" ]; then
@artembo
Copy link
Contributor

artembo commented Nov 6, 2020

Hey funduck! Thanks for an issue and for the implementation suggested, we will implement it for ubuntu-like systems soon.

@artembo artembo self-assigned this Nov 13, 2020
@Totktonada
Copy link
Member

AFAIS, Mint Linux support was added into the installer.sh script 2020-12-03, so I'll close this issue. Feel free to reopen if the problem persists.

better0fdead added a commit that referenced this issue Jul 5, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.

Part of #390
better0fdead added a commit that referenced this issue Jul 5, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.

Part of #390
better0fdead added a commit that referenced this issue Jul 5, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.

Part of #390
better0fdead added a commit that referenced this issue Jul 5, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.

Part of #390
better0fdead added a commit that referenced this issue Jul 5, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.

Part of #390
better0fdead added a commit that referenced this issue Jul 14, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.
Result: ~25-50% faster testing.

Part of #390
better0fdead added a commit that referenced this issue Jul 14, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.
Result: ~25-50% faster testing.

Part of #390
better0fdead added a commit that referenced this issue Jul 14, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.
Result: ~25-50% faster testing.

Part of #390
better0fdead added a commit that referenced this issue Jul 14, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.
Result: ~25-50% faster testing.

Part of #390
better0fdead added a commit that referenced this issue Jul 14, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.
Result: ~25-50% faster testing.

Part of #390
better0fdead added a commit that referenced this issue Jul 14, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.
Result: ~25-50% faster testing.

Part of #390
better0fdead added a commit that referenced this issue Jul 14, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.
Result: ~25-50% faster testing.

Part of #390
better0fdead added a commit that referenced this issue Jul 14, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.
Result: ~25-50% faster testing.

Closes #390
LeonidVas pushed a commit that referenced this issue Jul 15, 2022
Added pre-building of project_with_cartridge and default_project before integration tests.
Result: ~25-50% faster testing.

Closes #390
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants