aboutsummaryrefslogtreecommitdiff
path: root/lib/util.bash
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util.bash')
-rw-r--r--lib/util.bash16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/util.bash b/lib/util.bash
index 97131c3..a387d8b 100644
--- a/lib/util.bash
+++ b/lib/util.bash
@@ -33,6 +33,22 @@ config_etc_kv() {
printf "%s" "$value"
}
+# Create a datetime stamp. This is a wrapper around the date utility, ensuring
+# that the date being formatted is always in UTC and respect SOURCE_DATE_EPOCH,
+# if it is set.
+datetime() {
+ local date_opts
+
+ # Apply SOURCE_DATE_EPOCH as the date to base off of.
+ if [[ $SOURCE_DATE_EPOCH ]]
+ then
+ date_opts+=("-d@$SOURCE_DATE_EPOCH")
+ date_opts+=("-u")
+ fi
+
+ date "${date_opts[@]}" +"${1:-%FT%T}"
+}
+
# Log a message as error, and exit the program. This is intended for serious
# issues that prevent the script from running correctly. The exit code can be
# specified with -i, or will default to 1.