mirror of
https://github.com/hyperknot/openfreemap.git
synced 2026-05-21 14:02:15 +00:00
7 lines
149 B
Python
7 lines
149 B
Python
from ssh_lib.utils import apt_get_update
|
|
|
|
|
|
def install_rclone(c):
|
|
apt_get_update(c)
|
|
c.sudo('curl https://rclone.org/install.sh | sudo bash')
|