Apt get support

This commit is contained in:
jpic 2020-01-28 02:03:32 +01:00
parent 3e76bdb96e
commit 60015cb90d

View File

@ -9,6 +9,11 @@ class Packages:
upgrade='sudo apk upgrade', upgrade='sudo apk upgrade',
install='sudo apk add', install='sudo apk add',
), ),
apt=dict(
update='sudo apt-get -y update',
upgrade='sudo apt-get -y upgrade',
install='sudo apt-get -y install',
),
dnf=dict( dnf=dict(
update='sudo dnf update', update='sudo dnf update',
upgrade='sudo dnf upgrade --exclude container-selinux --best --assumeyes', # noqa upgrade='sudo dnf upgrade --exclude container-selinux --best --assumeyes', # noqa