From 6158c9d3c0104834a71f8b4584a9941890ab2713 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Thu, 19 Mar 2026 14:04:21 +0100 Subject: [PATCH] Update update.sh to run deployment scripts with sudo - Modified the update.sh script to prepend 'sudo' to deployment commands for elevated permissions. - Ensured that all installation and update scripts are executed with the necessary privileges to avoid permission issues during execution. --- update.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/update.sh b/update.sh index 7aa8425..c9a5c53 100755 --- a/update.sh +++ b/update.sh @@ -1,9 +1,9 @@ #!/bin/bash git fetch git pull -./deploy-to-opt.sh -./install-service-ypchat.sh -./install.sh -./quick-update.sh -./fix-dependencies.sh +sudo ./deploy-to-opt.sh +sudo ./install-service-ypchat.sh +sudo ./install.sh +sudo ./quick-update.sh +sudo ./fix-dependencies.sh sudo systemctl restart ypchat