diff options
Diffstat (limited to 'conf/ishtar-pending-update-cron')
-rwxr-xr-x | conf/ishtar-pending-update-cron | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/conf/ishtar-pending-update-cron b/conf/ishtar-pending-update-cron new file mode 100755 index 000000000..269d41859 --- /dev/null +++ b/conf/ishtar-pending-update-cron @@ -0,0 +1,10 @@ +#!/bin/sh + +ISHTAR_PATH="/srv/ishtar" +APPS="my_app my_second_app" + +for APP in $APPS; do + cd $ISHTAR_PATH/$APP + python3 manage.py process_pending_update --quiet +done + |