File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 7
7
def install_prereqs ():
8
8
project_path = os .path .dirname (os .path .abspath (__file__ ))
9
9
10
+ os .system ('clear' )
10
11
os .system ('apt update' )
11
12
os .system ('clear' )
12
13
os .system ('apt install python3 bundler libsqlite3-dev isc-dhcp-server hostapd libxml2-dev libxslt-dev -y' )
@@ -83,9 +84,16 @@ def update_config_paths():
83
84
print ()
84
85
sys .exit ()
85
86
87
+ os .system ('clear' )
88
+ print ()
89
+ print ()
90
+ print ("#####################################" )
91
+ print ("##### RaspiWiFi Setup Complete #####" )
92
+ print ("#####################################" )
86
93
print ()
87
94
print ()
88
- reboot_ans = input ("Initial setup is complete. A reboot is required to start in WiFi configuration mode, would you like to do that now? (y/n): " )
95
+ print ("Initial setup is complete. A reboot is required to start in WiFi configuration mode..." )
96
+ reboot_ans = input ("Would you like to do that now? (y/n): " )
89
97
90
98
if reboot_ans == 'y' :
91
99
os .system ('sudo reboot' )
You can’t perform that action at this time.
0 commit comments