[type/__debconf_set_selections] Send message about each debconf setting that is changed

This commit is contained in:
Dennis Camera 2021-04-26 16:47:44 +02:00
parent a4122882f2
commit 9cf19388ab
1 changed files with 5 additions and 0 deletions

View File

@ -46,4 +46,9 @@ then
$(cat "${filename}")
EOF
CODE
awk '
{
printf "set %s %s %s %s\n", $1, $2, $3, $4
}' "${filename}" >>"${__messages_out:?}"
fi