Skip to content

Commit e99fb7c

Browse files
committed
More aesthetic changes to the Initial Setup script.
1 parent 1696721 commit e99fb7c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

initial_setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
print()
1313
entered_ssid = input("Would you like to specify an SSID you'd like to use \nfor Host/Configuration mode? [default: RaspiWiFi Setup]: ")
1414
print()
15-
auto_config_choice = input("Would you like to enable \nauto-reconfiguration mode (y/N)?: ")
15+
auto_config_choice = input("Would you like to enable \nauto-reconfiguration mode [y/N]?: ")
1616
print()
1717
auto_config_delay = input("How long of a delay would you like without an active connection \nbefore auto-reconfiguration triggers (seconds)? [default: 300]: ")
1818
print()
19-
ssl_enabled_choice = input("Would you like to enable SSL during configuration mode \n(NOTICE: you will get a certificate ID error when connecting, \nbut traffic will be encrypted) (y/N)?: ")
19+
ssl_enabled_choice = input("Would you like to enable SSL during configuration mode \n(NOTICE: you will get a certificate ID error \nwhen connecting, but traffic will be encrypted) [y/N]?: ")
2020
os.system('clear')
2121
print()
2222
print()
23-
install_ans = input("Are you ready to commit changes to the system? (y/N): ")
23+
install_ans = input("Are you ready to commit changes to the system? [y/N]: ")
2424

2525
if(install_ans.lower() == 'y'):
2626
setup_lib.install_prereqs()
@@ -49,7 +49,7 @@
4949
print()
5050
print()
5151
print("Initial setup is complete. A reboot is required to start in WiFi configuration mode...")
52-
reboot_ans = input("Would you like to do that now? (y/N): ")
52+
reboot_ans = input("Would you like to do that now? [y/N]: ")
5353

5454
if reboot_ans.lower() == 'y':
5555
os.system('reboot')

0 commit comments

Comments
 (0)