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:
Matthew Heon
2019-08-13 14:55:43 -04:00
parent ce64c1403d
commit 6aa4fbb0ea

View File

@ -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
}
}