We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b755813 commit 6b0c90dCopy full SHA for 6b0c90d
1 file changed
rootfs/runner/init
@@ -54,23 +54,5 @@ case "$1" in
54
;;
55
esac
56
57
-## Use sdutil to register with service discovery
58
-
59
-if [[ $SD_NAME && $PORT ]]; then
60
- if [[ $SD_HOST ]]; then
61
- runner="sdutil exec -h $SD_HOST -s $SD_NAME:$PORT bash -c"
62
- unset SD_HOST
63
- else
64
- runner="sdutil exec -s $SD_NAME:$PORT bash -c"
65
- fi
66
- unset SD_NAME
67
-elif [[ $SD_ARGS ]]; then
68
- runner="sdutil $SD_ARGS bash -c"
69
- unset SD_ARGS
70
-else
71
- runner="bash -c"
72
-fi
73
74
## Run!
75
-# shellcheck disable=SC2086
76
-exec $runner "$command"
+exec bash -c "$command"
0 commit comments