diff options
author | EuAndreh <eu@euandre.org> | 2022-11-28 08:29:47 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-11-28 08:29:50 -0300 |
commit | 8ddfa47b4f36be7200d6956a6c011bd8d8c6e1da (patch) | |
tree | 07a4fb2c3a727dc9498045cd53b3b5adc9e3458b /etc/sh/cronjob.sh | |
parent | etc/guix/home.scm: Remove now unused package "isync-with-options" (diff) | |
download | dotfiles-8ddfa47b4f36be7200d6956a6c011bd8d8c6e1da.tar.gz dotfiles-8ddfa47b4f36be7200d6956a6c011bd8d8c6e1da.tar.xz |
etc/sh/cronjob.sh: Add $(hostname) to cronjob subject
Diffstat (limited to 'etc/sh/cronjob.sh')
-rwxr-xr-x | etc/sh/cronjob.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/sh/cronjob.sh b/etc/sh/cronjob.sh index 3ab071b..31e7b28 100755 --- a/etc/sh/cronjob.sh +++ b/etc/sh/cronjob.sh @@ -71,4 +71,4 @@ set +e set -e CMD="$*" -with-email -s "$CMD" -- nice -n15 "$@" 1>>"$XDG_LOG_HOME"/euandreh/mcron.log 2>&1 +with-email -s "$(hostname): $CMD" -- nice -n15 "$@" 1>>"$XDG_LOG_HOME"/euandreh/mcron.log 2>&1 |