From 03c0c0401e1d9e2efe6a8a494d555f913b83c8f8 Mon Sep 17 00:00:00 2001 From: Suyono Date: Mon, 4 Dec 2023 11:49:36 +1100 Subject: [PATCH] test: initial --- docker/alpine/etc/wingmate/services/one | 5 ++++- docker/alpine/etc/wingmate/services/three.sh | 3 ++- docker/alpine/etc/wingmate/services/two.sh | 3 ++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docker/alpine/etc/wingmate/services/one b/docker/alpine/etc/wingmate/services/one index 16660d7..2b926f4 100644 --- a/docker/alpine/etc/wingmate/services/one +++ b/docker/alpine/etc/wingmate/services/one @@ -1 +1,4 @@ -you cannot run this file \ No newline at end of file +#!/bin/sh + +export LOG_PATH=/var/log/one.log +exec /usr/local/bin/wmtest-helper-spawner 10 diff --git a/docker/alpine/etc/wingmate/services/three.sh b/docker/alpine/etc/wingmate/services/three.sh index 0186992..02803f5 100644 --- a/docker/alpine/etc/wingmate/services/three.sh +++ b/docker/alpine/etc/wingmate/services/three.sh @@ -1,3 +1,4 @@ #!/bin/sh -exec sleep 1 \ No newline at end of file +export LOG_PATH=/var/log/three.log +exec /usr/local/bin/wmtest-helper-spawner 13 diff --git a/docker/alpine/etc/wingmate/services/two.sh b/docker/alpine/etc/wingmate/services/two.sh index 0186992..f0f0bb6 100644 --- a/docker/alpine/etc/wingmate/services/two.sh +++ b/docker/alpine/etc/wingmate/services/two.sh @@ -1,3 +1,4 @@ #!/bin/sh -exec sleep 1 \ No newline at end of file +export LOG_PATH=/var/log/two.log +exec /usr/local/bin/wmtest-helper-spawner 4