summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
Diffstat (limited to 'conf')
-rwxr-xr-xconf/ishtar-pending-update-cron10
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
+