diff --git a/init/aws-nitro/mod.c b/init/aws-nitro/mod.c index 03a1c0159..b186c8c42 100644 --- a/init/aws-nitro/mod.c +++ b/init/aws-nitro/mod.c @@ -35,7 +35,7 @@ static int mod_load(const char *path) } ret = finit_module(fd, "", 0); - if (ret < 0) { + if (ret < 0 && errno != EEXIST) { close(fd); fprintf(stderr, "init module %s (errno %d)\n", path, errno); return -errno;