Skip to content

Commit

Permalink
fix start-proxy.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Mar 17, 2024
1 parent bd07d14 commit f0734ac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
epics-host: linux-x86_64
extension: -rtems-beatnik
platform: linux/amd64
runtime: "RUNTIME=ghcr.io/epics-containers/rtems-proxy:0.1.5"
runtime: "RUNTIME=ghcr.io/epics-containers/rtems-proxy:0.1.6"

- epics-target: linux-x86_64
epics-host: linux-x86_64
Expand Down
7 changes: 6 additions & 1 deletion ioc/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,12 @@ if [[ ${TARGET_ARCHITECTURE} == "linux-x86_64" ]] ; then
exec ${IOC}/bin/linux-x86_64/ioc ${final_ioc_startup}
else
# not native architectures will have a proxy-start.sh in the root
/proxy-start.sh
if [[ -f ${CONFIG_DIR}/proxy-start.sh ]]; then
# instances can provide their own proxy-start ovedrride in config
bash ${CONFIG_DIR}/proxy-start.sh
fi
# the proxy container will provide a default proxy-start.sh in the root
bash /proxy-start.sh
fi


0 comments on commit f0734ac

Please sign in to comment.