From 12f99c839c3339a46d079deaca964ee9a0375adc Mon Sep 17 00:00:00 2001 From: x86dev Date: Fri, 14 Jul 2017 12:08:52 +0200 Subject: [PATCH] setup-ttrss.sh / update-ttrss.sh: Keeping going in case of errors. --- root/srv/setup-ttrss.sh | 2 -- root/srv/update-ttrss.sh | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/root/srv/setup-ttrss.sh b/root/srv/setup-ttrss.sh index b47f324..a328e06 100755 --- a/root/srv/setup-ttrss.sh +++ b/root/srv/setup-ttrss.sh @@ -1,7 +1,5 @@ #!/bin/sh -set -e - setup_nginx() { if [ -z "$TTRSS_HOST" ]; then diff --git a/root/srv/update-ttrss.sh b/root/srv/update-ttrss.sh index f5401a7..f097ed2 100755 --- a/root/srv/update-ttrss.sh +++ b/root/srv/update-ttrss.sh @@ -1,5 +1,4 @@ #!/bin/sh -set -e TTRSS_PATH=/var/www/ttrss @@ -52,7 +51,7 @@ update_theme_feedly() update_common() { echo "Updating: Updating permissions" - for CUR_DIR in /etc/nginx /etc/php5 /var/log /var/lib/nginx /tmp /etc/services.d; do + for CUR_DIR in /etc/nginx /etc/php5 /var/lib/nginx /tmp /etc/services.d; do chown -R $UID:$GID ${CUR_DIR} done