mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 22:55:44 +03:00
16 lines
235 B
Bash
Executable File
16 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo '/run-services.sh'
|
|
|
|
for entry in /services/*.sh
|
|
do
|
|
if [[ -f "$entry" ]]; then
|
|
echo "$entry"
|
|
[[ ! -x "$entry" ]] && (chmod +x "$entry"; sync)
|
|
"$entry"
|
|
fi
|
|
done
|
|
|
|
echo '/run-agent.sh'
|
|
exec '/run-agent.sh'
|