relayd: add LTTNG_RELAYD_HEALTH env var
[lttng-tools.git] / src / bin / lttng-relayd / health-relayd.c
index 6b4a742f8e5fa95066e29b3e922ff13bd449eb31..01e54d2eae795a35e87d94dd6f06b51ef96be3ac 100644 (file)
@@ -53,7 +53,8 @@
 #include "health-relayd.h"
 
 /* Global health check unix path */
-static char health_unix_sock_path[PATH_MAX];
+static
+char health_unix_sock_path[PATH_MAX];
 
 int health_quit_pipe[2];
 
@@ -129,12 +130,32 @@ error:
        return ret;
 }
 
+static
+int parse_health_env(void)
+{
+       const char *health_path;
+
+       health_path = getenv(LTTNG_RELAYD_HEALTH_ENV);
+       if (health_path) {
+               strncpy(health_unix_sock_path, health_path,
+                       PATH_MAX);
+               health_unix_sock_path[PATH_MAX - 1] = '\0';
+       }
+
+       return 0;
+}
+
 static
 int setup_health_path(void)
 {
        int is_root, ret = 0;
        char *home_path = NULL, *rundir = NULL, *relayd_path;
 
+       ret = parse_health_env();
+       if (ret) {
+               return ret;
+       }
+
        is_root = !getuid();
 
        if (is_root) {
This page took 0.024205 seconds and 4 git commands to generate.