d/postinst: followup: grep and sed use different regex escaping ..

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2020-10-29 20:25:28 +01:00
parent 83b039af35
commit 603a6bd183

2
debian/postinst vendored
View File

@ -18,7 +18,7 @@ case "$1" in
# FIXME: Remove with 1.1
if test -n "$2"; then
if dpkg --compare-versions "$2" 'lt' '0.9.4-1'; then
if grep -q -P -e '^\s\+verify-schedule ' /etc/proxmox-backup/datastore.cfg; then
if grep -s -q -P -e '^\s+verify-schedule ' /etc/proxmox-backup/datastore.cfg; then
echo "NOTE: drop all verify schedules from datastore config."
echo "You can now add more flexible verify jobs"
flock -w 30 /etc/proxmox-backup/.datastore.lck \