summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5331574)
raw | patch | inline | side by side (parent: 5331574)
author | Ian Kelling <iank@fsf.org> | |
Wed, 10 May 2023 17:09:23 +0000 (13:09 -0400) | ||
committer | Ian Kelling <iank@fsf.org> | |
Wed, 10 May 2023 17:09:23 +0000 (13:09 -0400) |
sysd-mail-once | patch | blob | history |
diff --git a/sysd-mail-once b/sysd-mail-once
index d44b77fd48f35c0405be838fc20052b99604ae6f..3b87eea08dbc7c4f399786d4ce5dc4ecaab84adc 100755 (executable)
--- a/sysd-mail-once
+++ b/sysd-mail-once
c=$cbase/$service # c for command file path base
-glob="$c[0-9]*"
+glob="${c}[0-9]*"
arr=($glob); file="${arr[0]}"; [[ $glob != "$file" ]] || file=
[[ -d $cbase ]] || mkdir -p $cbase
if (( code )); then
send_mail=false
if [[ $file ]]; then
- i=${file#$c}
+ i=${file#"$c"}
if (( i < errors )); then
new_file=$c$((i+1))
mv $file $new_file
From: $USER@$(hostname -f)
Subject: $HOSTNAME: $service exit code: $code
-$(journalctl -u $service.service --after-cursor=$(<$file))
+$(journalctl -u $service.service --after-cursor="$(<$file)")
EOF
fi
else