Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/server.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-05-15 14:23:59 +0200
committerAnton Hvornum <anton@hvornum.se>2021-05-15 14:23:59 +0200
commite8d241ec96070ab471eebf7cfc9094c341c42466 (patch)
tree2b8cad155bce7f06d176270dd4030fc37894e01b /profiles/server.py
parentef1d475fd073a7a7e8254b4872b6c811f281248d (diff)
parentbaf857f4180c6826e1fc08dee88d5f0b4872fd07 (diff)
Merge branch 'master' of github.com:archlinux/archinstall into mypy-workflow
Diffstat (limited to 'profiles/server.py')
-rw-r--r--profiles/server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/profiles/server.py b/profiles/server.py
index 9d28054d..d0346ace 100644
--- a/profiles/server.py
+++ b/profiles/server.py
@@ -24,7 +24,7 @@ if __name__ == 'server':
archinstall.log(archinstall.storage['_selected_servers'], level=logging.DEBUG)
for server in archinstall.storage['_selected_servers']:
archinstall.log(f'Installing {server} ...', level=logging.INFO)
- app = archinstall.Application(installation, server)
+ app = archinstall.Application(archinstall.storage['installation_session'], server)
app.install()
archinstall.log('If your selections included multiple servers with the same port, you may have to reconfigure them.', fg="yellow", level=logging.INFO)