summaryrefslogtreecommitdiffstats
path: root/tests/lib/installers/local
diff options
context:
space:
mode:
authorRyota Mibu <r-mibu@cq.jp.nec.com>2016-12-14 02:51:31 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-12-14 02:51:31 +0000
commit40cba233d16e355b078e368772ad4aadbb5f91b1 (patch)
tree79b448f6b4b00553302aec928fd772835858e12c /tests/lib/installers/local
parent6d0620d15a3391d4a0a9f2bec9de143ef68734d2 (diff)
parent83076cf49ebd8ded4d5d5e9667fcd8e9e9be4172 (diff)
Merge "Refactor installers support code"
Diffstat (limited to 'tests/lib/installers/local')
-rw-r--r--tests/lib/installers/local21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/lib/installers/local b/tests/lib/installers/local
new file mode 100644
index 00000000..e7aed14f
--- /dev/null
+++ b/tests/lib/installers/local
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+function get_installer_ip {
+ # Noop
+ return
+}
+
+function installer_get_ssh_keys {
+ echo "INSTALLER_TYPE set to 'local'. Assuming SSH keys already exchanged with $COMPUTE_HOST"
+ return
+}
+
+function installer_apply_patches {
+ # Noop
+ return
+}
+
+function cleanup_installer_local {
+ # Noop
+ return
+}