diff options
Diffstat (limited to 'container/path.go')
| -rw-r--r-- | container/path.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/container/path.go b/container/path.go index bc0000ad..965ad494 100644 --- a/container/path.go +++ b/container/path.go @@ -15,7 +15,10 @@ import ( const ( // Nonexistent is a path that cannot exist. - // /proc is chosen because a system with covered /proc is unsupported by this package. + // + // This path can never be presented by the kernel if proc is mounted on + // /proc/. This can only exist if parts of /proc/ is covered, or proc is not + // mounted at all. Neither configuration is supported by this package. Nonexistent = fhs.Proc + "nonexistent" hostPath = fhs.Root + hostDir |
