Skip to content

Commit

Permalink
containers: Remove empty entrypoint
Browse files Browse the repository at this point in the history
This made it impossible to use the "command" in container
configuration.

This fix issue #476
  • Loading branch information
mattiaswal committed Jun 17, 2024
1 parent b327c43 commit d359c6b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/confd/src/infix-containers.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,6 @@ static int add(const char *name, struct lyd_node *cif)
if (lydx_is_enabled(cif, "manual"))
fprintf(fp, " --manual");

if ((string = lydx_get_cattr(cif, "command")))
fprintf(fp, " --entrypoint");

fprintf(fp, " create %s %s", name, image);

if ((string = lydx_get_cattr(cif, "command")))
Expand Down

0 comments on commit d359c6b

Please sign in to comment.