correctly pass the script to the worker
diff --git a/provisioner/handlers.go b/provisioner/handlers.go
index 2ac421d..11df6ee 100644
--- a/provisioner/handlers.go
+++ b/provisioner/handlers.go
@@ -61,7 +61,7 @@
 		http.Error(w, err.Error(), http.StatusInternalServerError)
 		return
 	}
-	err = c.dispatcher.Dispatch(&info, role)
+	err = c.dispatcher.Dispatch(&info, role, c.config.Script)
 	if err != nil {
 		http.Error(w, err.Error(), http.StatusInternalServerError)
 		return