summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xinstall_to_artemis5
1 files changed, 3 insertions, 2 deletions
diff --git a/install_to_artemis b/install_to_artemis
index 0927b91..9a8c6c4 100755
--- a/install_to_artemis
+++ b/install_to_artemis
@@ -1,14 +1,15 @@
#!/bin/sh
+set -x
H=artemis.panaceas.org
D=/tftpboot/macmini/intel64/x86_64/
S=dest/x86_64
-tar cfC - ${S} . | ssh $D "tar xfpBC - $D"
+tar cfC - ${S} . | ssh $H "tar xfpBC - $D"
D=/tftpboot/macmini/intel64/ia32/
S=dest/i386
-tar cfC - ${S} . | ssh $D "tar xfpBC - $D"
+tar cfC - ${S} . | ssh $H "tar xfpBC - $D"