diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-02-12 11:10:55 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-02-14 15:04:14 +0100 |
commit | 85b7374491e842c44bec3ce5ec800794cae10295 (patch) | |
tree | c45fa8df8796b3741094f796f56b66e9d4388e60 /pkg/util/utils.go | |
parent | 156ce5cd7d6f0f1514d263a74ffe3dd42f7c7caf (diff) | |
download | podman-85b7374491e842c44bec3ce5ec800794cae10295.tar.gz podman-85b7374491e842c44bec3ce5ec800794cae10295.tar.bz2 podman-85b7374491e842c44bec3ce5ec800794cae10295.zip |
add pkg/signal
Add pkg/signal to deal with parts of signal processing and translating
signals from string to numeric representations. The code has been
copied from docker/docker (and attributed with the copyright) but been
reduced to only what libpod needs (on Linux).
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/util/utils.go')
-rw-r--r-- | pkg/util/utils.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/util/utils.go b/pkg/util/utils.go index 6aa3c221e..4a52ea68d 100644 --- a/pkg/util/utils.go +++ b/pkg/util/utils.go @@ -18,9 +18,9 @@ import ( "github.com/containers/libpod/pkg/errorhandling" "github.com/containers/libpod/pkg/namespaces" "github.com/containers/libpod/pkg/rootless" + "github.com/containers/libpod/pkg/signal" "github.com/containers/storage" "github.com/containers/storage/pkg/idtools" - "github.com/docker/docker/pkg/signal" v1 "github.com/opencontainers/image-spec/specs-go/v1" "github.com/pkg/errors" "github.com/sirupsen/logrus" |