X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fsysctl.c;h=17c6719841bacce1c70399fd3c303678a1a828c3;hp=9f7acfce8b09f76d67247c0d82caa2c35baed5aa;hb=de19ece73860e90a10029fbc4c4f6d3b296f1a1e;hpb=f68c5a70762da0cbb6228d05a87254a7c6c46ba6 diff --git a/src/sysctl.c b/src/sysctl.c index 9f7acfce8..17c671984 100644 --- a/src/sysctl.c +++ b/src/sysctl.c @@ -219,26 +219,34 @@ int main(int argc, char *argv[]) { if (r <= 0) return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS; - if (argc-optind > 1) { - log_error("This program expects one or no arguments."); - return EXIT_FAILURE; - } - log_set_target(LOG_TARGET_AUTO); log_parse_environment(); log_open(); - if (argc > optind) - r = apply_file(argv[optind], false); - else { + umask(0022); + + if (argc > optind) { + int i; + + for (i = optind; i < argc; i++) { + int k; + + k = apply_file(argv[i], false); + if (k < 0 && r == 0) + r = k; + } + } else { char **files, **f; + int k; r = conf_files_list(&files, ".conf", - "/run/sysctl.d", "/etc/sysctl.d", + "/run/sysctl.d", "/usr/local/lib/sysctl.d", "/usr/lib/sysctl.d", +#ifdef HAVE_SPLIT_USR "/lib/sysctl.d", +#endif NULL); if (r < 0) { log_error("Failed to enumerate sysctl.d files: %s", strerror(-r)); @@ -246,14 +254,14 @@ int main(int argc, char *argv[]) { } STRV_FOREACH(f, files) { - int k; - k = apply_file(*f, true); if (k < 0 && r == 0) r = k; } - apply_file("/etc/sysctl.conf", true); + k = apply_file("/etc/sysctl.conf", true); + if (k < 0 && r == 0) + r = k; strv_free(files); }