We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It looks like there was a mistake in the document "docs/03-compute-resources.md"
the command was ssh -n root@${IP} hostnamectl hostname ${HOST}
ssh -n root@${IP} hostnamectl hostname ${HOST}
it should be ssh -n root@${IP} hostnamectl set-hostname ${HOST}
ssh -n root@${IP} hostnamectl set-hostname ${HOST}
as set-hostname is the correct flag.
and running with old command will give following error
Unknown operation hostname
pull request which fixes the issue #791
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It looks like there was a mistake in the document "docs/03-compute-resources.md"
the command was
ssh -n root@${IP} hostnamectl hostname ${HOST}
it should be
ssh -n root@${IP} hostnamectl set-hostname ${HOST}
as set-hostname is the correct flag.
and running with old command will give following error
Unknown operation hostname
pull request which fixes the issue
#791
The text was updated successfully, but these errors were encountered: