Fix to remove cronjobs when the cronjob expression did not match.

This commit is contained in:
matze 2020-02-01 17:08:25 +01:00
parent 87f30b6053
commit e5d86ffc93
1 changed files with 6 additions and 2 deletions

View File

@ -42,8 +42,12 @@ fi
mkdir "$__object/files"
echo "$entry" > "$__object/files/entry"
if diff -q "$__object/files/entry" "$__object/explorer/entry" >/dev/null; then
state_is=present
if [ -s "$__object/explorer/entry" ]; then
if diff -q "$__object/files/entry" "$__object/explorer/entry" >/dev/null; then
state_is=present
else
state_is=modified
fi
else
state_is=absent
fi