diff options
-rw-r--r-- | source/dummy_build_update.sh | 4 | ||||
-rw-r--r-- | source/dummy_definitions_update.sh | 4 | ||||
-rw-r--r-- | source/dummy_lorry_update.sh | 4 |
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 |