From d320017d1fa469b665803f24314f1fbf5c1aae62 Mon Sep 17 00:00:00 2001 From: "ljf (zamentur)" Date: Thu, 27 Feb 2020 17:27:04 +0100 Subject: [PATCH] [fix] Permission issue to run borg as simple user --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index c1d415c..af3b210 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -15,7 +15,7 @@ install_borg_with_pip () { /opt/borg-env/bin/python /opt/borg-env/bin/pip install borgbackup==1.1.10 echo "#!/bin/bash /opt/borg-env/bin/python /opt/borg-env/bin/borg \"\$@\"" > /usr/local/bin/borg - chmod u+x /usr/local/bin/borg + chmod a+x /usr/local/bin/borg fi }