e53d6ee6e5f41df4df6b78a702e5f3f3ae9e05e9
2 # Copyright (C) 2016 Ian Kelling
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
8 # http://www.apache.org/licenses/LICENSE-2.0
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
18 trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR
21 cbase
=$HOME/sysd-mail-once-state
25 Usage: sysd-log-once [-ERRORS] SERVICE COMMAND [ARGS...]
26 For systemd timers, email on repeated failure & success after failure.
28 In the service triggered by the timer, prepend this script to the ExecStart.
29 The email will contain the service's logs for the last ERRORS runs.
32 Stores error counts in $cbase
34 -ERRORS: ERRORS is the number of failurs to accumulate before mailing the error.
47 c
=$cbase/$service # c for command file path base
50 arr
=($glob); file="${arr[0]}"; [[ $glob != "$file" ]] ||
file=
52 [[ -d $cbase ]] || mkdir
-p $cbase
54 if [[ ! $file ]]; then
55 cursor
=$
(journalctl
--show-cursor -qn0|
sed 's/^\s*--\scursor:\s*//')
60 if [[ $file == $c$errors ]]; then
61 echo |
mail -s "$HOSTNAME: $service success" $u@localhost
67 if (( i
< errors
)); then
71 if [[ $file == $c$errors ]]; then
72 journalctl
-u $service.service
--after-cursor=$
(<$file) | \
73 mail -s "$HOSTNAME: $service failure" $u@localhost
78 printf "%s\n" "$cursor" >$file
79 if (( errors
== 1 )); then
80 journalctl
-u $service.service
--after-cursor=$
(<$file) | \
81 mail -s "$HOSTNAME: $service failure" $u@localhost