Files
cobald-testenv/roles/cobald/files/cobald-entrypoint.sh

8 lines
122 B
Bash

#!/bin/sh
for i in /usr/local/lib/entrypoints.d/* ; do
[ -f $i ] && /bin/sh $i || break
done
exec "${@:-/bin/bash}"