2024-04-13 18:02:13 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
# required by Jenkins Docker plugin: https://github.com/docker-library/official-images#consistency
|
2024-04-13 18:39:46 +08:00
|
|
|
|
2024-04-13 19:57:57 +08:00
|
|
|
# Print a message
|
|
|
|
|
echo "Ansible Docker container is ready to run playbooks..."
|
|
|
|
|
|
|
|
|
|
# Execute the command passed to the Docker container
|
2024-04-13 18:54:18 +08:00
|
|
|
exec "$@"
|