Searched refs:arg_directory (Results 1 - 4 of 4) sorted by relevance
/systemd/src/nspawn/ |
H A D | nspawn.c | 114 static char *arg_directory = NULL; variable 420 r = parse_path_argument_and_warn(optarg, false, &arg_directory); 905 if (arg_directory && arg_image) { 915 if (arg_template && !(arg_directory || arg_machine)) { 2206 r = mount_device(root_device, arg_directory, NULL, root_device_rw); 2212 r = mount_device(home_device, arg_directory, "/home", home_device_rw); 2218 r = mount_device(srv_device, arg_directory, "/srv", srv_device_rw); 2335 if (arg_template && !arg_directory && arg_machine) { 2341 arg_directory = strjoin("/var/lib/machines/", arg_machine, NULL); 2342 if (!arg_directory) [all...] |
/systemd/src/journal-remote/ |
H A D | journal-upload.c | 53 static const char *arg_directory = NULL; variable 686 if (arg_directory) { 691 arg_directory = optarg; 759 if (optind < argc && (arg_directory || arg_file || arg_machine || arg_journal_type)) { 770 if (arg_directory) 771 r = sd_journal_open_directory(j, arg_directory, arg_journal_type); 780 arg_directory ? arg_directory : arg_file ? "files" : "journal");
|
/systemd/src/coredump/ |
H A D | coredumpctl.c | 56 static const char *arg_directory = NULL; variable 215 arg_directory = optarg; 818 if (arg_directory) { 819 r = sd_journal_open_directory(&j, arg_directory, 0); 821 log_error_errno(r, "Failed to open journals in directory: %s: %m", arg_directory);
|
/systemd/src/journal/ |
H A D | journalctl.c | 101 static const char *arg_directory = NULL; variable 595 arg_directory = optarg; 837 if (!!arg_directory + !!arg_file + !!arg_machine > 1) { 862 if ((arg_boot || arg_action == ACTION_LIST_BOOTS) && (arg_file || arg_directory || arg_merge)) { 2104 if (arg_directory) 2105 r = sd_journal_open_directory(&j, arg_directory, arg_journal_type); 2113 log_error_errno(r, "Failed to open %s: %m", arg_directory ?: arg_file ? "files" : "journal");
|
Completed in 2339 milliseconds