Skip to content

Commit 0844c2b

Browse files
caladdbsanders
authored andcommitted
BUGFIX: Make wizard DNS field scrollable so more than one DNS IP will fit
1 parent aca5cee commit 0844c2b

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

common/src/stack/wizard/gui/boss_config_snack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def render_network(screen, data):
5858
returnExit=0)
5959
e3 = Entry(21, text=data.get('Kickstart_PrivateGateway'), scroll=0, \
6060
returnExit=0)
61-
e4 = Entry(21, text=data.get('Kickstart_PrivateDNSServers'), scroll=0, \
61+
e4 = Entry(21, text=data.get('Kickstart_PrivateDNSServers'), scroll=1, \
6262
returnExit=0)
6363

6464
#add elements to form

tools/fab/frontend-install.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,9 @@ def usage():
500500
'--no-net-reconfig',
501501
])
502502

503+
# Reset the terminal, which the wizard messes up if running over virsh console
504+
os.system("reset")
505+
503506
umount('/mnt/cdrom')
504507

505508
# add missing attrs to site.attrs

0 commit comments

Comments
 (0)