diff --git a/packer-plugin-sdk/communicator/ssh/ssh.go b/packer-plugin-sdk/communicator/ssh/ssh.go index b8635483a..9c330bc27 100644 --- a/packer-plugin-sdk/communicator/ssh/ssh.go +++ b/packer-plugin-sdk/communicator/ssh/ssh.go @@ -1,3 +1,5 @@ +// Package SSH provides tooling for generating a temporary SSH keypair, and +// provides tooling for connecting to an instance via a tunnel. package ssh import ( diff --git a/packer-plugin-sdk/filelock/doc.go b/packer-plugin-sdk/filelock/doc.go index 28a5c9ad6..0a89b5030 100644 --- a/packer-plugin-sdk/filelock/doc.go +++ b/packer-plugin-sdk/filelock/doc.go @@ -2,5 +2,4 @@ Package filelock makes it easy to create and check file locks for concurrent processes. */ - package filelock diff --git a/packer-plugin-sdk/guestexec/doc.go b/packer-plugin-sdk/guestexec/doc.go index 391ee5c29..fb9e6e8c4 100644 --- a/packer-plugin-sdk/guestexec/doc.go +++ b/packer-plugin-sdk/guestexec/doc.go @@ -8,5 +8,4 @@ Note that to successfully use this package your provisioner must have knowledge of the guest type, which is not information that builders generally collect -- your provisioner will have to require guest information in its config. */ - package guestexec diff --git a/packer-plugin-sdk/iochan/iochan.go b/packer-plugin-sdk/iochan/iochan.go index 59541ba4e..4f3f7d8e6 100644 --- a/packer-plugin-sdk/iochan/iochan.go +++ b/packer-plugin-sdk/iochan/iochan.go @@ -1,3 +1,5 @@ +// Package iochan is a Go library for treating `io` readers and writers like +// channels. package iochan import (