mirror of
https://github.com/containers/podman.git
synced 2025-08-06 11:32:07 +08:00
Running Podman with a nonexistent hooks dir is nonfatal
Even explicitly defined hooks directories may not exist under some circumstances. It's not worth a hard-fail if we hit an ENOENT in these cases. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
@ -4,6 +4,7 @@ package hooks
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"os"
|
||||
"sort"
|
||||
"strings"
|
||||
"sync"
|
||||
@ -56,7 +57,7 @@ func New(ctx context.Context, directories []string, extensionStages []string) (m
|
||||
|
||||
for _, dir := range directories {
|
||||
err = ReadDir(dir, manager.extensionStages, manager.hooks)
|
||||
if err != nil {
|
||||
if err != nil && !os.IsNotExist(err) {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user