You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Came across this when setting up @jkim628's local dev environment. She had not generated a ssh keypair yet so she had no ~/.ssh directory which caused the creation of the custom SSL cert to fail:
Configuring SSL...
Creating custom CA SSL cert for puma-dev...
Traceback (most recent call last):
2: from bin/puma-dev-conf:100:in `<main>'
1: from bin/puma-dev-conf:100:in `open'
bin/puma-dev-conf:100:in `initialize': No such file or directory @ rb_sysopen - /Users/julianakim/.ssh/pumadev.pem (Errno::ENOENT)
Once we ran ssh-keygen and the ~/.ssh directory was created everything was fine, but it would be nice to catch this edge case and spit out a helpful error message.
The text was updated successfully, but these errors were encountered:
Came across this when setting up @jkim628's local dev environment. She had not generated a ssh keypair yet so she had no
~/.ssh
directory which caused the creation of the custom SSL cert to fail:radius-cli/lib/radius/cli/puma_dev.rb
Line 133 in 3176b3a
radius-cli/lib/radius/cli/puma_dev.rb
Lines 145 to 149 in 3176b3a
here was the error we were getting:
Once we ran
ssh-keygen
and the~/.ssh
directory was created everything was fine, but it would be nice to catch this edge case and spit out a helpful error message.The text was updated successfully, but these errors were encountered: