-
Notifications
You must be signed in to change notification settings - Fork 19
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: replace usage of outdated ifconfig
with ip
#129
Conversation
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.
Thanks again @BoboTiG!
LGTM. I think we can remove some of the check_installed
calls with this change.
I would like @herr-seppia his input though, since he wanted to keep some of the changes in here before.
Yes, I guess we can remove |
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.
LGTM
@@ -12,43 +12,25 @@ if [[ -z "$PUBLIC_IP" || ! "$PUBLIC_IP" =~ ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ ]]; | |||
exit 1 | |||
fi | |||
|
|||
runOnMac=false |
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.
I don't like the fact that MacOS support was removed, but indeed it's out of node-installer scope
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.
I don't like the fact that MacOS support was removed, but indeed it's out of node-installer scope
There's a couple of pathways we can take. The easiest is to implement #27 if we use MacOS with the installer for dev purposes. Or we try to actually broaden support once everything is more "stable" in the future.
Fixes #41.
int2ip()
, andip2int()
, are cosmetic only.