mirror of
https://github.com/wazuh/wazuh-docker.git
synced 2025-10-23 04:51:57 +00:00
8 lines
244 B
Bash
8 lines
244 B
Bash
#!/bin/bash
|
|
# Wazuh App Copyright (C) 2019 Wazuh Inc. (License GPLv2)
|
|
|
|
# It will run every .sh script located in entrypoint-scripts folder in lexicographical order
|
|
for script in `ls /entrypoint-scripts/*.sh | sort -n`; do
|
|
bash "$script"
|
|
|
|
done |