forked from ungleich-public/cdist
fix typos in __debconf_set_selections
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
This commit is contained in:
parent
16d51b3cf1
commit
228ed4dbd2
1 changed files with 2 additions and 2 deletions
|
@ -21,12 +21,12 @@
|
||||||
# Setup selections
|
# Setup selections
|
||||||
#
|
#
|
||||||
|
|
||||||
filename"$(cat "$__object/parameter/file")"
|
filename="$(cat "$__object/parameter/file")"
|
||||||
|
|
||||||
if [ "$filename" = "-" ]; then
|
if [ "$filename" = "-" ]; then
|
||||||
filename="$__object/stdin"
|
filename="$__object/stdin"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "debconf-set-selections << __file-eof"
|
echo "debconf-set-selections << __file-eof"
|
||||||
cat "$(cat "$filename")"
|
cat "$filename"
|
||||||
echo "__file-eof"
|
echo "__file-eof"
|
||||||
|
|
Loading…
Reference in a new issue