summaryrefslogtreecommitdiffstats
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap8
1 files changed, 4 insertions, 4 deletions
diff --git a/bootstrap b/bootstrap
index 96e6301..f7de61c 100755
--- a/bootstrap
+++ b/bootstrap
@@ -12,10 +12,10 @@ fi
ssh root@$host pacman --noconfirm --needed -S puppet git
-if ssh root@$host test -d /root/bootstrap-tozt; then
- ssh root@$host "cd bootstrap-tozt && git pull"
+if ssh root@$host test -d /tmp/bootstrap-tozt; then
+ ssh root@$host "cd /tmp/bootstrap-tozt && git pull"
else
- ssh root@$host git clone git://github.com/doy/bootstrap-tozt
+ ssh root@$host "cd /tmp && git clone git://github.com/doy/bootstrap-tozt"
fi
-ssh root@$host "cd bootstrap-tozt && puppet apply --modulepath=./modules manifest.pp"
+ssh root@$host "cd /tmp/bootstrap-tozt && puppet apply --modulepath=./modules manifest.pp"