From 5a4a6e56b0c394ac9bddc5d34cb8ed874185bc10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= <40151420+ldericher@users.noreply.github.com> Date: Wed, 2 Mar 2022 18:41:15 +0100 Subject: [PATCH] missing option values --- libexec/kiwi-backup/build_command | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/kiwi-backup/build_command b/libexec/kiwi-backup/build_command index 76a8525..b5dc61a 100755 --- a/libexec/kiwi-backup/build_command +++ b/libexec/kiwi-backup/build_command @@ -53,8 +53,8 @@ printf "%s -c 3 %s%s %s" \ case "${task}" in backup) printf ' --allow-source-mismatch' - printf ' --volsize' - printf ' --full-if-older-than' + printf ' --volsize %s' "${BACKUP_VOLSIZE}" + printf ' --full-if-older-than %s' "${FULL_BACKUP_FREQUENCY}" printf '%s' "$( add_space "${OPTIONS_BACKUP}" )" printf ' /backup/source' ;;