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

templates: Fix for NM dispatcher script miscounting length #1906

Merged

Commits on Jul 6, 2020

  1. Fix for NM dispatcher script miscounting length

    Use `printf` instead of `echo` when truncating the hostname. `echo` adds
    line termination that gets counted as a character. Example:
       $ echo test | wc -c
       5
       $ printf test | wc -c
       4
    
    Signed-off-by: Ben Howard <ben.howard@redhat.com>
    Ben Howard committed Jul 6, 2020
    Configuration menu
    Copy the full SHA
    cf2db93 View commit details
    Browse the repository at this point in the history