summaryrefslogtreecommitdiffstats
path: root/builder
diff options
context:
space:
mode:
authorJonathan Bauer2019-08-26 16:21:19 +0200
committerJonathan Bauer2019-08-26 16:21:19 +0200
commitcbf4e0f8820454fb36f35d133569eb7f3e7e45aa (patch)
tree466ca5d81cee9c1ba59aa2d325f65bf0c4041107 /builder
parent[conf-tgz] do not overwrite directory permissions (diff)
downloadsystemd-init-cbf4e0f8820454fb36f35d133569eb7f3e7e45aa.tar.gz
systemd-init-cbf4e0f8820454fb36f35d133569eb7f3e7e45aa.tar.xz
systemd-init-cbf4e0f8820454fb36f35d133569eb7f3e7e45aa.zip
[conf-tgz] typo
Diffstat (limited to 'builder')
-rwxr-xr-xbuilder/modules.d/conf-tgz/hooks/unpack-config-tgz.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/builder/modules.d/conf-tgz/hooks/unpack-config-tgz.sh b/builder/modules.d/conf-tgz/hooks/unpack-config-tgz.sh
index 86692fd2..a2d550ce 100755
--- a/builder/modules.d/conf-tgz/hooks/unpack-config-tgz.sh
+++ b/builder/modules.d/conf-tgz/hooks/unpack-config-tgz.sh
@@ -12,7 +12,7 @@ tarcopy() {
cd "$1"
local filelist="$(mktemp)"
find . \! -type d > "$filelist"
- tar -c -p -T /tmp/tctmp | tar -xp -C "$2"
+ tar -c -p -T "$filelist" | tar -xp -C "$2"
rm -f -- "$filelist"
cd - &>/dev/null
}