summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorMike Bryant <m@ocado.com>2016-01-19 14:07:54 +0000
committerMike Bryant <m@ocado.com>2016-01-19 14:07:54 +0000
commiteb3d86fe6debc286d74e0eed5a61d5a564b324c4 (patch)
treea706d1bd2a714c2ba672ef93e01a23d7e6a48e06 /extra
parent3e72b6a35f2aff6a299019c34f4b57e97ba480aa (diff)
Add the option of automatically reloading the config every X seconds. Fixes #271
Diffstat (limited to 'extra')
-rwxr-xr-xextra/auto-reload-config.runit12
1 files changed, 12 insertions, 0 deletions
diff --git a/extra/auto-reload-config.runit b/extra/auto-reload-config.runit
new file mode 100755
index 0000000..5eaecc8
--- /dev/null
+++ b/extra/auto-reload-config.runit
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+if [ -z "$CONFIG_RELOAD_INTERVAL" ]; then
+ # Just stop and do nothing
+ read
+fi
+
+while true; do
+ sleep $CONFIG_RELOAD_INTERVAL
+ echo "Reloading config..."
+ curl -s http://localhost:8888/reload?format=json -O /dev/null
+done