mirror of
https://github.com/containers/podman.git
synced 2026-03-20 15:42:20 -04:00
No registries warning
When no /etc/containers/registries.conf is found, log a warning message. Signed-off-by: baude <bbaude@redhat.com> Closes: #338 Approved by: mheon
This commit is contained in:
@@ -151,6 +151,11 @@ func main() {
|
||||
Usage: "used to pass an option to the storage driver",
|
||||
},
|
||||
}
|
||||
if _, err := os.Stat("/etc/containers/registries.conf"); err != nil {
|
||||
if os.IsNotExist(err) {
|
||||
logrus.Warn("unable to find /etc/containers/registries.conf. some podman (image shortnames) commands may be limited")
|
||||
}
|
||||
}
|
||||
if err := app.Run(os.Args); err != nil {
|
||||
if debug {
|
||||
logrus.Errorf(err.Error())
|
||||
|
||||
Reference in New Issue
Block a user