From de19ece73860e90a10029fbc4c4f6d3b296f1a1e Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 20 Mar 2012 15:31:09 +0100 Subject: sysctl: accept multiple passed configuration files --- src/sysctl.c | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) (limited to 'src/sysctl.c') diff --git a/src/sysctl.c b/src/sysctl.c index 852ec91c9c..17c6719841 100644 --- a/src/sysctl.c +++ b/src/sysctl.c @@ -219,28 +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(); umask(0022); - if (argc > optind) - r = apply_file(argv[optind], false); - else { + 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", "/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)); @@ -248,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); } -- cgit v1.2.3-54-g00ecf