setup-ttrss.sh / update-ttrss.sh: Keeping going in case of errors.

This commit is contained in:
x86dev 2017-07-14 12:08:52 +02:00
parent aa50559ac7
commit 12f99c839c
2 changed files with 1 additions and 4 deletions

View File

@ -1,7 +1,5 @@
#!/bin/sh
set -e
setup_nginx()
{
if [ -z "$TTRSS_HOST" ]; then

View File

@ -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