13 lines
216 B
Text
13 lines
216 B
Text
# THIS FILE IS CONTROLLED BY ANSIBLE - DO NOT CHANGE IN DEPLOYMENT!
|
|
|
|
|
|
Execute is useful for conditions
|
|
|
|
Take care to not output a newline after the result!
|
|
|
|
Example:
|
|
|
|
#!/bin/bash
|
|
d=$(/bin/date +%s)
|
|
echo -n $d
|
|
exit 0
|