-
Notifications
You must be signed in to change notification settings - Fork 795
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
Linux deployment scripts tweaks #900
Linux deployment scripts tweaks #900
Conversation
If the user is root, we want to exit as soon as possible since any commands that the deployment script runs will be run as root.
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.
We should not use apt
as it has an unstable CLI interface.
https://manpages.debian.org/buster/apt/apt.8.en.html#SCRIPT_USAGE_AND_DIFFERENCES_FROM_OTHER_APT_TOOLS
Other than that, changes look good.
@acepace Good call. I'll push a fix tomorrow. |
`apt-get` has a stable command-line interface, while `apt` does not.
What does this PR do?
Fixes a number of issues with
deployment_scripts/deploy_linux.sh
.The
deployment_scripts/deploy_linux.sh
is not often used. As such, it has fallen into a state of disrepair. These commits fix a number of installation failures, as well as update some documentation to improve the overall experience of using the linux deployment script.PR Checklist
Testing Checklist