X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fbinfmt%2Fbinfmt.c;h=3c8d815d6452f433b46bb6367d54b8aaaebbbc7e;hp=e8d65243918453276cc2165076583f9d4b387d12;hb=19c5f19d69bb5f520fa7213239490c55de06d99d;hpb=609518c1d2abb511bd1fce447a1aa369e92a0bdb diff --git a/src/binfmt/binfmt.c b/src/binfmt/binfmt.c index e8d652439..3c8d815d6 100644 --- a/src/binfmt/binfmt.c +++ b/src/binfmt/binfmt.c @@ -118,11 +118,6 @@ finish: int main(int argc, char *argv[]) { int r = 0; - if (argc > 2) { - log_error("This program expects one or no arguments."); - return EXIT_FAILURE; - } - log_set_target(LOG_TARGET_AUTO); log_parse_environment(); log_open(); @@ -130,25 +125,35 @@ int main(int argc, char *argv[]) { umask(0022); if (argc > 1) { - r = apply_file(argv[1], false); + int i; + + for (i = 1; i < argc; i++) { + int k; + + k = apply_file(argv[i], false); + if (k < 0 && r == 0) + r = k; + } } else { char **files, **f; - /* Flush out all rules */ - write_one_line_file("/proc/sys/fs/binfmt_misc/status", "-1"); - r = conf_files_list(&files, ".conf", - "/run/binfmt.d", "/etc/binfmt.d", + "/run/binfmt.d", "/usr/local/lib/binfmt.d", "/usr/lib/binfmt.d", +#ifdef HAVE_SPLIT_USR + "/lib/binfmt.d", +#endif NULL); - if (r < 0) { log_error("Failed to enumerate binfmt.d files: %s", strerror(-r)); goto finish; } + /* Flush out all rules */ + write_one_line_file("/proc/sys/fs/binfmt_misc/status", "-1"); + STRV_FOREACH(f, files) { int k;