Convert instance reinstall to multi instance model
[ganeti-local] / devel / upload.in
index b408a7b..94759e6 100644 (file)
@@ -35,6 +35,10 @@ while [ "$#" -gt 0 ]; do
     --no-restart)
       NO_RESTART=1
     ;;
+    -h|--help)
+      echo "Usage: $0 [--no-restart] hosts..."
+      exit 0
+      ;;
     -*)
       echo "Unknown option: $opt" >&2
       exit 1
@@ -71,9 +75,11 @@ for host; do
 done
 wait
 
+INIT_SCRIPT="$TXD/ganeti.initd"
+install --mode=0755 doc/examples/ganeti.initd $INIT_SCRIPT
 for host; do
   echo Uploading init script to ${host}...
-  scp doc/examples/ganeti.initd root@${host}:/etc/init.d/ganeti &
+  scp $INIT_SCRIPT root@${host}:/etc/init.d/ganeti &
 done
 wait