summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-07 14:58:03 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-07 14:58:03 +0100
commitb4fd589c3d25f6f77d29ac5a8b6255f8032d0e7a (patch)
tree35132aa67cacb9428be79ac0dc688b1536c538af
parentc945611265b18e8afcd6d7afa8b98a9f4de45a74 (diff)
downloadorchestration-b4fd589c3d25f6f77d29ac5a8b6255f8032d0e7a.tar.gz
Fix hardcoded IP in dummy update scripts
-rw-r--r--source/dummy_build_update.sh4
-rw-r--r--source/dummy_definitions_update.sh4
-rw-r--r--source/dummy_lorry_update.sh4
3 files changed, 9 insertions, 3 deletions
diff --git a/source/dummy_build_update.sh b/source/dummy_build_update.sh
index e7a7e2b..eb304df 100644
--- a/source/dummy_build_update.sh
+++ b/source/dummy_build_update.sh
@@ -1,8 +1,10 @@
+#!/bin/sh
# this will run once ybd has finished a build
+set -e
category=postbuild
-IP=10.24.2.109
+IP=127.0.0.1
port=9999
user=orchestration
passwd=orchestration
diff --git a/source/dummy_definitions_update.sh b/source/dummy_definitions_update.sh
index 53a4651..c08612d 100644
--- a/source/dummy_definitions_update.sh
+++ b/source/dummy_definitions_update.sh
@@ -1,8 +1,10 @@
+#!/bin/sh
# this will go on the post-receive hooks for repos updated by lorry
+set -e
category=definitions
-IP=10.24.2.109
+IP=127.0.0.1
port=9999
user=orchestration
passwd=orchestration
diff --git a/source/dummy_lorry_update.sh b/source/dummy_lorry_update.sh
index c0c16df..228f50f 100644
--- a/source/dummy_lorry_update.sh
+++ b/source/dummy_lorry_update.sh
@@ -1,8 +1,10 @@
+#!/bin/sh
# this will go on the definitions post-receive hook
+set -e
category=lorry
-IP=10.24.2.109
+IP=127.0.0.1
port=9999
user=orchestration
passwd=orchestration