forked from ungleich-public/cdist
Execute source.list.template with sh instead of relying on execute permissions
(which don't transfer for make install-user).
This commit is contained in:
parent
c85184dcb4
commit
9ae8798fbe
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ export options
|
|||
|
||||
# generate file from template
|
||||
mkdir "$__object/files"
|
||||
"$__type/files/source.list.template" > "$__object/files/source.list"
|
||||
sh "$__type/files/source.list.template" > "$__object/files/source.list"
|
||||
__file "/etc/apt/sources.list.d/${name}.list" \
|
||||
--source "$__object/files/source.list" \
|
||||
--owner root --group root --mode 0644 \
|
||||
|
|
Loading…
Reference in a new issue