mirror of
https://gitee.com/kennylee/docker.git
synced 2024-11-29 18:38:34 +08:00
18 lines
529 B
Bash
Executable File
18 lines
529 B
Bash
Executable File
#! /bin/bash
|
|
set -euo pipefail
|
|
|
|
cat <<EOF
|
|
***************************************************************************
|
|
* WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING *
|
|
***************************************************************************
|
|
Please update your scripts to use /sbin/tini or simply tini going forward.
|
|
Previous path has been preserved for backwards compatibility,
|
|
but WILL BE REMOVED in the future. (around Jenkins >= 2.107.2+)
|
|
|
|
Now sleeping 2 minutes...
|
|
EOF
|
|
|
|
sleep 120
|
|
|
|
exec tini "$@"
|