You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: initial_setup.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -12,15 +12,15 @@
12
12
print()
13
13
entered_ssid=input("Would you like to specify an SSID you'd like to use \nfor Host/Configuration mode? [default: RaspiWiFi Setup]: ")
14
14
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]?: ")
16
16
print()
17
17
auto_config_delay=input("How long of a delay would you like without an active connection \nbefore auto-reconfiguration triggers (seconds)? [default: 300]: ")
18
18
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]?: ")
20
20
os.system('clear')
21
21
print()
22
22
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]: ")
24
24
25
25
if(install_ans.lower() =='y'):
26
26
setup_lib.install_prereqs()
@@ -49,7 +49,7 @@
49
49
print()
50
50
print()
51
51
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]: ")
0 commit comments