mirror of
https://gitlab.com/monolithify/base-image-build.git
synced 2024-11-23 01:31:24 +00:00
10 lines
263 B
Bash
10 lines
263 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "--- Adding ssh key to client ---"
|
|
source $utilsLocation/initSSHclient.sh
|
|
echo "--- Finished adding ssh key to client ---"
|
|
|
|
echo "--- Resetting existing KVMs ---"
|
|
$utilsLocation/resetKVMs.sh
|
|
echo "--- Finished resetting existing KVMs ---" |