-
Notifications
You must be signed in to change notification settings - Fork 196
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
ShellDriver: put_key_file: write keys in chunks of 100 chars #1629
base: master
Are you sure you want to change the base?
ShellDriver: put_key_file: write keys in chunks of 100 chars #1629
Conversation
Because of limits to the number of characters allowed on the command line, break up the writing public ssh keys into 100 character chunks. fixes labgrid-project#1627 Signed-off-by: Perry Melange <[email protected]>
Here is the output from debug to show the results of the change:
|
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found.
Additional details and impacted files@@ Coverage Diff @@
## master #1629 +/- ##
========================================
- Coverage 55.8% 55.7% -0.1%
========================================
Files 170 170
Lines 13382 13388 +6
========================================
+ Hits 7469 7470 +1
- Misses 5913 5918 +5
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Because of limits to the number of characters allowed on the command line, break up the writing public ssh keys into 100 character chunks.
Fixes #1627