mirror of
https://github.com/YunoHost-Apps/flohmarkt_ynh.git
synced 2024-09-03 18:36:30 +02:00
10 lines
276 B
Text
10 lines
276 B
Text
|
#!/bin/sh
|
||
|
# run urlwatch for flohmarkt
|
||
|
PATH=/usr/sbin:/sbin:/usr/bin:/bin
|
||
|
|
||
|
sleep $((RANDOM%111))
|
||
|
sudo -u __APP__ urlwatch \
|
||
|
--config /var/www/__APP__/urlwatch/config.yaml \
|
||
|
--urls=/var/www/__APP__/urlwatch/urls.yaml \
|
||
|
--cache /var/www/__APP__/urlwatch/cache.file
|