You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.6 KiB
Bash
88 lines
2.6 KiB
Bash
#!/bin/sh -e
|
|
|
|
while ! PGPASSWORD=$TTRSS_DB_PASS psql -h $TTRSS_DB_HOST -U $TTRSS_DB_USER $TTRSS_DB_NAME -c 'select true'; do
|
|
echo waiting until $TTRSS_DB_HOST is ready...
|
|
sleep 3
|
|
done
|
|
|
|
# We don't need those here (HTTP_HOST would cause false SELF_URL_PATH check failures)
|
|
unset HTTP_PORT
|
|
unset HTTP_HOST
|
|
|
|
if ! id app >/dev/null 2>&1; then
|
|
addgroup -g $OWNER_GID app
|
|
adduser -D -h /var/www/html -G app -u $OWNER_UID app
|
|
fi
|
|
|
|
DST_DIR=/var/www/html/tt-rss
|
|
SRC_REPO=https://git.tt-rss.org/fox/tt-rss.git
|
|
|
|
[ -e $DST_DIR ] && rm -f $DST_DIR/.app_is_ready
|
|
|
|
export PGPASSWORD=$TTRSS_DB_PASS
|
|
|
|
[ ! -e /var/www/html/index.php ] && cp ${SCRIPT_ROOT}/index.php /var/www/html
|
|
|
|
PSQL="psql -q -h $TTRSS_DB_HOST -U $TTRSS_DB_USER $TTRSS_DB_NAME"
|
|
|
|
if [ ! -d $DST_DIR/.git ]; then
|
|
mkdir -p $DST_DIR
|
|
echo cloning tt-rss source from $SRC_REPO to $DST_DIR...
|
|
git clone $SRC_REPO $DST_DIR || echo error: failed to clone master repository.
|
|
git checkout $TARGET_COMMIT || echo error: unable to checkout ${TARGET_COMMIT}.
|
|
else
|
|
echo updating tt-rss source in $DST_DIR from $SRC_REPO...
|
|
cd $DST_DIR && \
|
|
git config core.filemode false && \
|
|
git config pull.rebase false && \
|
|
git checkout $TARGET_COMMIT || echo error: unable to checkout ${TARGET_COMMIT}.
|
|
fi
|
|
|
|
if [ ! -e $DST_DIR/index.php ]; then
|
|
echo "error: tt-rss index.php missing (git clone failed?), unable to continue."
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -d $DST_DIR/plugins.local/nginx_xaccel ]; then
|
|
echo cloning plugins.local/nginx_xaccel...
|
|
git clone https://git.tt-rss.org/fox/ttrss-nginx-xaccel.git \
|
|
$DST_DIR/plugins.local/nginx_xaccel || echo error: failed to clone plugin repository.
|
|
else
|
|
echo updating plugins.local/nginx_xaccel...
|
|
cd $DST_DIR/plugins.local/nginx_xaccel && \
|
|
git config core.filemode false && \
|
|
git config pull.rebase false && \
|
|
git pull origin master || echo error: failed to update plugin repository.
|
|
fi
|
|
|
|
chown -R $OWNER_UID:$OWNER_GID $DST_DIR \
|
|
/var/log/
|
|
|
|
for d in lock icons; do
|
|
mkdir -p $DST_DIR/$d
|
|
chmod 777 $DST_DIR/$d
|
|
find $DST_DIR/$d -type f -exec chmod 666 {} \;
|
|
done
|
|
|
|
$PSQL -c "create extension if not exists pg_trgm"
|
|
|
|
RESTORE_SCHEMA=${SCRIPT_ROOT}/restore-schema.sql.gz
|
|
|
|
if [ -r $RESTORE_SCHEMA ]; then
|
|
zcat $RESTORE_SCHEMA | $PSQL
|
|
elif ! $PSQL -c 'select * from ttrss_version'; then
|
|
cat /var/www/html/tt-rss/schema/ttrss_schema_pgsql.sql | sed 's/tt-rss.spb.ru/tt-rss.org/g' | $PSQL
|
|
fi
|
|
|
|
cp ${SCRIPT_ROOT}/config.docker.php $DST_DIR/config.php
|
|
|
|
# this was previously generated
|
|
rm -f $DST_DIR/config.php.bak
|
|
|
|
cd $DST_DIR && sudo -E -u app php ./update.php --update-schema=force-yes
|
|
|
|
touch $DST_DIR/.app_is_ready
|
|
|
|
sudo -E -u app /usr/bin/php-fpm -F
|
|
|