Skip to content
Snippets Groups Projects
Commit d3b316de authored by Florent Thiery's avatar Florent Thiery
Browse files

fix cockpit install

parent d8574e7c
No related branches found
No related tags found
No related merge requests found
......@@ -2,14 +2,14 @@
import utils
def setup():
def setup(interactive=False):
cmds = [
"add-apt-repository universe",
"apt update",
"apt full-upgrade -y",
"apt install -y cockpit packagekit ifupdown",
"apt purge --auto-remove -y netplan.io",
"mkdir -p /etc/NetworkManager/conf.d",
"touch /etc/NetworkManager/conf.d/10-globally-managed-devices.conf",
'add-apt-repository universe',
'apt update',
'apt full-upgrade -y',
'apt install -y cockpit packagekit ifupdown',
'apt purge --auto-remove -y netplan.io',
'mkdir -p /etc/NetworkManager/conf.d',
'touch /etc/NetworkManager/conf.d/10-globally-managed-devices.conf',
]
utils.run_commands(cmds)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment