mirror of
https://git.tt-rss.org/fox/ttrss-docker-compose
synced 2025-06-08 01:39:54 +02:00
8 lines
124 B
Text
8 lines
124 B
Text
|
#!/bin/sh
|
||
|
|
||
|
DST_DIR=/var/www/html/tt-rss
|
||
|
|
||
|
if [ -s $DST_DIR/config.php ]; then
|
||
|
sudo -u nobody $DST_DIR/update.php --feeds
|
||
|
fi
|