mirror of
https://git.tt-rss.org/fox/ttrss-docker-compose
synced 2025-06-08 12:29:52 +02:00
7 lines
124 B
Bash
Executable file
7 lines
124 B
Bash
Executable file
#!/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
|