Browse code

pkg: replace some README's with GoDoc package descriptions

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2022/10/01 00:11:37
Showing 7 changed files
1 1
deleted file mode 100644
... ...
@@ -1 +0,0 @@
1
-This code provides helper functions for dealing with archive files.
... ...
@@ -1,3 +1,4 @@
1
+// Package archive provides helper functions for dealing with archive files.
1 2
 package archive // import "github.com/docker/docker/pkg/archive"
2 3
 
3 4
 import (
4 5
deleted file mode 100644
... ...
@@ -1,5 +0,0 @@
1
-# reexec
2
-
3
-The `reexec` package facilitates the busybox style reexec of the docker binary that we require because 
4
-of the forking limitations of using Go.  Handlers can be registered with a name and the argv 0 of 
5
-the exec of the binary will be used to find and execute custom init paths.
... ...
@@ -1,3 +1,7 @@
1
+// Package reexec facilitates the busybox style reexec of the docker binary that
2
+// we require because of the forking limitations of using Go.  Handlers can be
3
+// registered with a name and the argv 0 of the exec of the binary will be used
4
+// to find and execute custom init paths.
1 5
 package reexec // import "github.com/docker/docker/pkg/reexec"
2 6
 
3 7
 import (
4 8
deleted file mode 100644
... ...
@@ -1 +0,0 @@
1
-This package provides helper functions for dealing with string identifiers
2 1
deleted file mode 100644
... ...
@@ -1 +0,0 @@
1
-SysInfo stores information about which features a kernel supports.
... ...
@@ -1,3 +1,4 @@
1
+// Package sysinfo stores information about which features a kernel supports.
1 2
 package sysinfo // import "github.com/docker/docker/pkg/sysinfo"
2 3
 
3 4
 import "github.com/docker/docker/pkg/parsers"