grafana/devenv/docker/blocks/smtp/bootstrap.sh

28 lines
486 B
Bash
Raw Normal View History

2015-06-04 07:29:39 -05:00
#!/bin/sh
set -u
# User params
USER_PARAMS=$@
# Internal params
RUN_CMD="snmpd -f ${USER_PARAMS}"
#######################################
# Echo/log function
# Arguments:
# String: value to log
#######################################
log() {
if [[ "$@" ]]; then echo "[`date +'%Y-%m-%d %T'`] $@";
else echo; fi
}
# Launch
log $RUN_CMD
$RUN_CMD
2018-04-13 12:07:13 -05:00
# Exit immediately in case of any errors or when we have interactive terminal
2015-06-04 07:29:39 -05:00
if [[ $? != 0 ]] || test -t 0; then exit $?; fi
log