-
Notifications
You must be signed in to change notification settings - Fork 223
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
Updated install.sh to include iptables #237
Updated install.sh to include iptables #237
Conversation
Thank you for your contribution. unfortunately, one or more of your commits are missing the required "Signed-off-by:" statement. Signing off is part of the Developer Certificate of Origin (DCO) which is used by this project. Read the DCO and project contributing guide carefully, and amend your commits using the git CLI. Note that this does not require any cryptography, keys or special steps to be taken. 💡 Shall we fix this?This will only take a few moments. First, clone your fork and checkout this branch using the git CLI. Next, set up your real name and email address:
Finally, run one of these commands to add the "Signed-off-by" line to your commits. If you only have one commit so far then run: Check that the message has been added properly by running "git log". |
1 similar comment
Thank you for your contribution. unfortunately, one or more of your commits are missing the required "Signed-off-by:" statement. Signing off is part of the Developer Certificate of Origin (DCO) which is used by this project. Read the DCO and project contributing guide carefully, and amend your commits using the git CLI. Note that this does not require any cryptography, keys or special steps to be taken. 💡 Shall we fix this?This will only take a few moments. First, clone your fork and checkout this branch using the git CLI. Next, set up your real name and email address:
Finally, run one of these commands to add the "Signed-off-by" line to your commits. If you only have one commit so far then run: Check that the message has been added properly by running "git log". |
e2379ea
to
4d7dc62
Compare
iptables dependency is required for debian bullseye support Signed-off-by: Ramesh Vijayaraghavan <[email protected]>
Great point. My assumption is that apt install iptables will cause nothing or update to latest version for that OS. I don't have a ubuntu setup to validate it though. |
|
I can't see how that would be a problem because anyone can create an Ubuntu VM with multipass or by launching a droplet on DigitalOcean or a similar cloud. This should take you less than 5-10 minutes to verify. |
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.
See comments.
Signed-off-by: Ramesh Vijayaraghavan <[email protected]>
Hi @alexellis Thank you for the comments. I have resolved them. I am getting the changes tested in Ubuntu 20.04 LTS. Will keep this thread updated on the result. |
Hi @alexellis in the install.sh at line 15 curl is used to fetch the version and display it. In the Ubuntu 20.04 LTS, i had to install it before running the script else it failed. Once curl is installed then the entire installation went smooth. Question Can the below code be moved into
|
I need some context to understand why you're asking to do this? What's the benefit, what's the fix? If curl needs to be added, then let's make sure that gets added early on with apt. |
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.
Approved.
It seems like we already add curl in the script? |
At Line 15 the curl is used to fetch the version details. At line 201 the call to install the dependency happens. Hence curl is used before we would install the required dependency. |
Description
iptables dependency is required for debian bullseye support
Motivation and Context
How Has This Been Tested?
Tested with Raspberry Pi 3 1GB Ram, Running latest Debian bullseye
Types of changes
Checklist:
Commits:
git commit -s
for the Developer Certificate of Origin (DCO)Code:
Docs: