summaryrefslogtreecommitdiffstats
path: root/tests/lib/installers/local
blob: e7aed14f31575573a5824dc069b74f7c89097162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
}