summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2014-02-14 21:45:42 -0800
committerAdam Ierymenko <adam.ierymenko@gmail.com>2014-02-14 21:45:42 -0800
commitaceb938e0764225ce957f7bdf85d9273fb6d7378 (patch)
tree030483ceace729767a9372eda531693ad8d262fc /ext
parent68f44fb93298c211f11ec376ea3d89e8d12e6f06 (diff)
downloadinfinitytier-aceb938e0764225ce957f7bdf85d9273fb6d7378.tar.gz
infinitytier-aceb938e0764225ce957f7bdf85d9273fb6d7378.zip
Another Linux installer fix: do not clobber existing directory permissions!
Diffstat (limited to 'ext')
-rw-r--r--ext/installfiles/linux/install.tmpl.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/installfiles/linux/install.tmpl.sh b/ext/installfiles/linux/install.tmpl.sh
index ffb9db97..1c3ae23c 100644
--- a/ext/installfiles/linux/install.tmpl.sh
+++ b/ext/installfiles/linux/install.tmpl.sh
@@ -64,7 +64,7 @@ echo 'Extracting files...'
if [ $dryRun -gt 0 ]; then
echo ">> dry run: tail -c +$blobStart \"$scriptPath\" | gunzip -c | tar -xvop -C / -f -"
else
- tail -c +$blobStart "$scriptPath" | gunzip -c | tar -xvop -C / -f -
+ tail -c +$blobStart "$scriptPath" | gunzip -c | tar -xvop --no-overwrite-dir -C / -f -
fi
if [ $dryRun -eq 0 -a ! -d "/var/lib/zerotier-one" ]; then