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

Decouple cmd package from the clab application part1 #1906

Merged
merged 18 commits into from
Mar 15, 2024
4 changes: 2 additions & 2 deletions clab/authz_keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ const (
authzKeysFPath = "~/.ssh/authorized_keys"
)

// CreateAuthzKeysFile creates the authorized_keys file in the lab directory
// createAuthzKeysFile creates the authorized_keys file in the lab directory
// using the public ssh keys retrieved from agent and local files.
func (c *CLab) CreateAuthzKeysFile() error {
func (c *CLab) createAuthzKeysFile() error {
b := new(bytes.Buffer)

for _, k := range c.SSHPubKeys {
Expand Down
Loading
Loading