10 lines
117 B
Bash
10 lines
117 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
get_meta_data() {
|
||
|
SSHPORT=$(imds meta-data/cloudbender/sshPort)
|
||
|
}
|
||
|
|
||
|
import_meta_data() {
|
||
|
echo Noop
|
||
|
}
|