podman logs: fix tailing

Fix issues with tailing of container logs as described
in issue #16.  Also add in the ability to use a duration or
known time stamp formats for the --since flag.

Signed-off-by: baude <bbaude@redhat.com>

Closes: #317
Approved by: mheon
This commit is contained in:
baude
2018-02-06 09:07:51 -06:00
committed by Atomic Bot
parent 75914199f3
commit fa9658cbfa
21 changed files with 230 additions and 1432 deletions

View File

@ -1,11 +0,0 @@
// +build linux darwin freebsd netbsd openbsd
package tail
import (
"os"
)
func OpenFile(name string) (file *os.File, err error) {
return os.Open(name)
}