From c016576c604d9a530e7a4d08b765240b489d850a Mon Sep 17 00:00:00 2001 From: vvzvlad Date: Sun, 28 May 2023 14:20:28 +0700 Subject: [PATCH] apt -> apt-get --- vestasync.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vestasync.py b/vestasync.py index 80ce044..fb39123 100755 --- a/vestasync.py +++ b/vestasync.py @@ -66,8 +66,8 @@ def restore_hostname(c): def prepare_packages_wb(c): - c.run('apt update') - c.run('apt install git apt-transport-https ca-certificates htop sudo mc wget curl jq zip gzip tar -y') + c.run('apt-get update') + c.run('apt-get install git apt-transport-https ca-certificates htop sudo mc wget curl jq zip gzip tar -y') c.run('apt-get -y autoremove') c.run('apt-get -y clean') c.run('apt-get -y autoclean ')