X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-relayd%2Fmain.c;h=4f9d74274943fdc433ed31c6ab60b6b05e4d5258;hp=cd17dcd6720717e54fa9897d96a587c97bd68450;hb=4d513a5063879aa41c5ce27d245a7c56ecaa6e79;hpb=834f3ec7f80b3ed3d5c42c089bca2e590778c328 diff --git a/src/bin/lttng-relayd/main.c b/src/bin/lttng-relayd/main.c index cd17dcd67..4f9d74274 100644 --- a/src/bin/lttng-relayd/main.c +++ b/src/bin/lttng-relayd/main.c @@ -2107,6 +2107,15 @@ int main(int argc, char **argv) goto exit; } + /* Try to create directory if -o, --output is specified. */ + if (opt_output_path) { + ret = utils_mkdir_recursive(opt_output_path, S_IRWXU | S_IRWXG); + if (ret < 0) { + ERR("Unable to create %s", opt_output_path); + goto exit; + } + } + /* Daemonize */ if (opt_daemon) { ret = daemon(0, 0);