Remove stricthostchecking
Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
parent
906e948b6c
commit
0f6201ab84
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ enc_repo = os.environ.get("ENCRYPTED_REPO")
|
||||||
enc_key = os.environ.get("ENCRYPTION_KEY")
|
enc_key = os.environ.get("ENCRYPTION_KEY")
|
||||||
ssh_key = os.environ.get("SSH_SECRET_KEY")
|
ssh_key = os.environ.get("SSH_SECRET_KEY")
|
||||||
|
|
||||||
git_ssh_cmd = f"ssh -o StrictHostKeyChecking=no -i {ssh_key}"
|
git_ssh_cmd = f"ssh -i {ssh_key}"
|
||||||
|
|
||||||
# Create our encrypted directory base
|
# Create our encrypted directory base
|
||||||
current_time = str(int(time()))
|
current_time = str(int(time()))
|
||||||
|
|
|
@ -17,7 +17,7 @@ content_repo_id = os.environ.get("CONTENT_REPO_ID")
|
||||||
gitlab_token = os.environ.get("GITLAB_TOKEN")
|
gitlab_token = os.environ.get("GITLAB_TOKEN")
|
||||||
ssh_key = os.environ.get("SSH_SECRET_KEY")
|
ssh_key = os.environ.get("SSH_SECRET_KEY")
|
||||||
|
|
||||||
git_ssh_cmd = f"ssh -o StrictHostKeyChecking=no -i {ssh_key}"
|
git_ssh_cmd = f"ssh -i {ssh_key}"
|
||||||
|
|
||||||
# Get the time and create a tag of epoch
|
# Get the time and create a tag of epoch
|
||||||
cwd = os.getcwd()
|
cwd = os.getcwd()
|
||||||
|
|
Loading…
Reference in a new issue