From 0a3ee19da6b48ec125e510067f53289b8ff628bf Mon Sep 17 00:00:00 2001 From: Suru Dissanaike <suru.dissanaike@iopsys.eu> Date: Mon, 10 May 2021 18:51:27 +0000 Subject: [PATCH] Added priority, autorestart and startretries to iopsys-supervisord.conf --- gitlab-ci/iopsys-supervisord.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gitlab-ci/iopsys-supervisord.conf b/gitlab-ci/iopsys-supervisord.conf index 85bb9c7..1741f18 100644 --- a/gitlab-ci/iopsys-supervisord.conf +++ b/gitlab-ci/iopsys-supervisord.conf @@ -1,5 +1,11 @@ [program:ubusd] +priority=1 +autorestart=false +startretries=0 command=/bin/bash -c "/usr/sbin/ubusd" [program:qos] +priority=2 +autorestart=false +startretries=0 command=/bin/bash -c "mkdir -p /opt/work && /usr/bin/valgrind --xml=yes --xml-file=/opt/work/memory-report.xml --leak-check=full --show-reachable=yes --show-leak-kinds=all --errors-for-leak-kinds=all --error-exitcode=1 --track-origins=yes /builds/iopsys/qosmngr/qosmngr" -- GitLab