fixes for compute installation
Change-Id: Ib31b473de351e0f41f88e43419bd3954cb63628c
diff --git a/openstack-compute-install.groovy b/openstack-compute-install.groovy
index dfe920b..6380057 100644
--- a/openstack-compute-install.groovy
+++ b/openstack-compute-install.groovy
@@ -49,7 +49,7 @@
timeout(800) {
retry(666) {
try {
- salt.runSaltCommand(saltMaster, 'local', targetLiveAll, 'test.ping', null, null, kwargs)
+ salt.runSaltCommand(saltMaster, 'local', targetLiveAll, 'test.ping')
} catch(e) {
common.infoMsg("Still waiting for node to come up")
sleep(10)
@@ -62,7 +62,7 @@
common.infoMsg("Lets run rest of the states to finish deployment")
salt.enforceState(saltMaster, targetLiveAll, 'linux,openssh,ntp,salt', true)
retry(2) {
- salt.runSaltCommand(saltMaster, 'local', targetLiveAll, 'state.apply', null, null, kwargs)
+ salt.runSaltCommand(saltMaster, 'local', targetLiveAll, 'state.apply')
}
}