This commit is contained in:
ahmadbilalkhalid 2019-08-29 18:39:34 +05:00
parent a60507a215
commit f7b4e5444d
1 changed files with 5 additions and 1 deletions

View File

@ -20,4 +20,8 @@ def setup(ceph_url, ssh_username):
keys = p.decode("utf-8").strip().split("\n")
keys = "\n".join(keys)
with open(os.path.expanduser("~/.ssh/known_hosts"), "a") as known_hosts:
known_hosts.write(keys)
known_hosts.write(keys)
os.makedirs("/etc/ceph", exist_ok=True)
command = f"sftp -b ./ceph_batch_cmd {ssh_username}@{ceph_url}:/etc/ceph"
subprocess.check_output(command.split())