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-14 18:35:40 +0200
committerAnton Hvornum <anton@hvornum.se>2021-05-14 18:35:40 +0200
commit6e898217eec4d287cb8d8ee4f70720fed6f6b4c7 (patch)
tree510ddc1ad4d138dd86eff976a38ed1cd7e8a8583 /profiles/server.py
parent12dc55650d78dc41bbc0ab7013baa7b3ce61ec7c (diff)
parentd0676dfa3daf4f25fad01943fd22b8e3df42e7fb (diff)
Merge branch 'master' of github.com:archlinux/archinstall into torxed-fix-350
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)