mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-07 09:25:43 +00:00
Support podman service sighup reload configuration files(containers.conf, registries.conf, storage.conf). Signed-off-by: Qi Wang <qiwan@redhat.com>
14 lines
156 B
Go
14 lines
156 B
Go
// +build !windows
|
|
|
|
package utils
|
|
|
|
import (
|
|
"os"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
// Platform specific signal synonyms
|
|
var (
|
|
SIGHUP os.Signal = unix.SIGHUP
|
|
)
|