]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - crontab.d/update.sh
Don't use echo for data from the user.
[config/dotfiles.git] / crontab.d / update.sh
1 #!/bin/sh
2
3 # Combine all crontab.* files in ~/.crontab.d/ into a single crontab file and
4 # load it with `crontab`.
5 #
6 # An existing crontab entry not generated with this script is not overwritten.
7
8 # Copyright (C) 2012-2013  Simon Ruderich
9 #
10 # This program is free software: you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation, either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
23
24 set -e
25
26
27 HEADER_WARNING="# WARNING! DO NOT EDIT THIS FILE! #"
28
29 # Don't overwrite existing crontab entries. Not race condition free but that
30 # can't be helped.
31 if crontab -l >/dev/null 2>&1; then
32     if crontab -l | head -n3 | grep "^$HEADER_WARNING$" >/dev/null; then
33         :
34     else
35         echo "Existing crontab entry found, please remove it manually."
36         exit 2
37     fi
38 fi
39
40
41 DIRECTORY="$HOME/.crontab.d"
42 if test ! -d "$DIRECTORY" || test ! -O "$DIRECTORY"; then
43     exit 1
44 fi
45
46 # `set -e` aborts when `mktemp` fails.
47 CRONTAB=`mktemp --tmpdir="$DIRECTORY" update-crontab.XXXXXXXXXXXX`
48
49 echo "###################################"  > "$CRONTAB"
50 echo "$HEADER_WARNING"                     >> "$CRONTAB"
51 echo "###################################" >> "$CRONTAB"
52 echo >> "$CRONTAB"
53 printf "# It was generated from '%s/*' on %s." \
54     "$DIRECTORY" "`LANG=C date '+%a, %d %b %Y %H:%M:%S %z'`" >>"$CRONTAB"
55
56 # Enforce C sort order.
57 LC_ALL=C
58
59 NO_MATCHES=
60 for file in "$DIRECTORY"/crontab.*; do
61     # No crontab.* files exist, abort.
62     if test ! -e "$file"; then
63         NO_MATCHES=y
64         break
65     fi
66
67     printf "Found '%s'.\n" "$file"
68
69     printf '\n\n## %s:\n' "$file" >>"$CRONTAB"
70
71     # Strip licenses, multiple empty lines and fix $HOME variables in PATH
72     # (cron doesn't expand variables).
73     START_REGEX='^# This [a-zA-Z]* is free software: you can redistribute it'
74     END_REGEX='^# along with this [a-zA-Z]*.  If not, see <[^>]*>\.'
75     < "$file" sed -e "/$START_REGEX/,/$END_REGEX/ d" \
76                   -e "/^#[ ]*$/ d" \
77                   -e "/^# Copyright (C) [0-9][0-9]* / d" \
78         | cat --squeeze-blank \
79         | sed "/^PATH/ s:\$HOME:$HOME:g" \
80         | sed 's/RAND_SLEEP \([0-9]*\)/sleep `perl -e "srand; print int rand \1;"`/' \
81         >> "$CRONTAB"
82 done
83
84 # Update crontab with the crontab.* files.
85 if test -z "$NO_MATCHES"; then
86     echo
87     echo 'Updating crontab.'
88     crontab "$CRONTAB"
89
90 # No files found, remove the existing crontab entry. Ignore errors in case no
91 # crontab entry existed in the first place.
92 else
93     echo 'No files found, removing old crontab (if it exists).'
94     crontab -r || true
95 fi
96
97 rm "$CRONTAB"