From 748acffdc070a68a106bac39e749871f749a1cc9 Mon Sep 17 00:00:00 2001 From: lgromero Date: Fri, 20 Jun 2025 11:56:51 +0200 Subject: [PATCH] Adds changes from fix bug in change ownership in oglivecli script when install oglive --- bin/oglivecli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/oglivecli b/bin/oglivecli index 777ee0c..df17ab3 100755 --- a/bin/oglivecli +++ b/bin/oglivecli @@ -391,7 +391,7 @@ function install() { }' > "$OGLIVEDIR/oglive_info.json" [ ! -f "$OGLIVEDIR/oglive_info.json" ] && { echo "{\"error\": \"JSON_CREATION_FAILED\", \"message\": \"Failed to create oglive_info.json.\"}"; exit 500; } - chown -R :opengnsys "$OGLIVEDIR" >/dev/null 2>&1 || { echo "{\"error\": \"CHOWN_FAILED\", \"message\": \"Failed to change ownership for $OGLIVEDIR.\"}"; exit 500; } + # chown -R :opengnsys "$OGLIVEDIR" >/dev/null 2>&1 || { echo "{\"error\": \"CHOWN_FAILED\", \"message\": \"Failed to change ownership for $OGLIVEDIR.\"}"; exit 500; } JSON_OUTPUT=$(jq -n \ --arg id "$OGLIVEID" \ --arg dist "$OGLIVEDIST" \