-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathscp.py
38 lines (28 loc) · 1.17 KB
/
scp.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright 2023 Canonical Ltd.
# Licensed under the Apache V2, see LICENCE file for details.
"""This is a very basic example that connects to the currently selected model
and prints the number of applications deployed to it.
Then attempts to use scp to grab the profile, as a way to show how scp works
from a pylibjuju perspective.
"""
import asyncio
import logging
from juju.model import Model
log = logging.getLogger(__name__)
async def main():
model = Model()
try:
# connect to the current model with the current user, per the Juju CLI
await model.connect()
print(f"There are {len(model.applications)} applications")
machine = model.machines["0"]
# This roughly expands to the following:
# scp -i ~/.local/share/juju/ssh/juju_id_rsa -o StrictHostKeyChecking=no -q -B [email protected]:/home/ubuntu/.profile /tmp/profile
await machine.scp_from("/home/ubuntu/.profile", "/tmp/profile") # noqa: S108
finally:
if model.is_connected():
print("Disconnecting from model")
await model.disconnect()
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO)
asyncio.run(main())