summaryrefslogtreecommitdiff
path: root/vendor/github.com/hpcloud/tail/README.md
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-03-29 16:41:47 +0200
committerGitHub <noreply@github.com>2022-03-29 16:41:47 +0200
commit0eff4b70d0429c0dd1d95bc0a15f679cef351cb5 (patch)
treede6c66409ca20c10c1500cfa0057421afbb489bd /vendor/github.com/hpcloud/tail/README.md
parent83d0729146dc4616e180c8d36ffd90de093b8617 (diff)
parent21502987b2318292bf98e3ef502fb4c0cf9a6d58 (diff)
downloadpodman-0eff4b70d0429c0dd1d95bc0a15f679cef351cb5.tar.gz
podman-0eff4b70d0429c0dd1d95bc0a15f679cef351cb5.tar.bz2
podman-0eff4b70d0429c0dd1d95bc0a15f679cef351cb5.zip
Merge pull request #13686 from vrothberg/nxadm
replace hpcloud/tail with nxadm/tail
Diffstat (limited to 'vendor/github.com/hpcloud/tail/README.md')
-rw-r--r--vendor/github.com/hpcloud/tail/README.md28
1 files changed, 0 insertions, 28 deletions
diff --git a/vendor/github.com/hpcloud/tail/README.md b/vendor/github.com/hpcloud/tail/README.md
deleted file mode 100644
index fb7fbc26c..000000000
--- a/vendor/github.com/hpcloud/tail/README.md
+++ /dev/null
@@ -1,28 +0,0 @@
-[![Build Status](https://travis-ci.org/hpcloud/tail.svg)](https://travis-ci.org/hpcloud/tail)
-[![Build status](https://ci.appveyor.com/api/projects/status/kohpsf3rvhjhrox6?svg=true)](https://ci.appveyor.com/project/HelionCloudFoundry/tail)
-
-# Go package for tail-ing files
-
-A Go package striving to emulate the features of the BSD `tail` program.
-
-```Go
-t, err := tail.TailFile("/var/log/nginx.log", tail.Config{Follow: true})
-for line := range t.Lines {
- fmt.Println(line.Text)
-}
-```
-
-See [API documentation](http://godoc.org/github.com/hpcloud/tail).
-
-## Log rotation
-
-Tail comes with full support for truncation/move detection as it is
-designed to work with log rotation tools.
-
-## Installing
-
- go get github.com/hpcloud/tail/...
-
-## Windows support
-
-This package [needs assistance](https://github.com/hpcloud/tail/labels/Windows) for full Windows support.