You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
320 B
9 lines
320 B
#!/bin/bash |
|
|
|
# signal_status takes a container name and a status and creates a file in the |
|
# "status" directory whose contents are the provided status. This can be |
|
# leveraged by dependent containers via the `wait_for` command. |
|
|
|
mkdir -p "/tmp/status" |
|
echo "$2" > "/tmp/status/$1" |
|
printf "Marked %s as %s.\n" "$1" "$2"
|
|
|