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