9 lines
304 B
Bash
Executable File
9 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Stopping AP in a screen"
|
|
sudo screen -S smarthack-wifi -X stuff '^C'
|
|
sudo screen -S smarthack-web -X stuff '^C'
|
|
sudo screen -S smarthack-smartconfig -X stuff '^C'
|
|
sudo screen -S smarthack-mqtt -X stuff '^C'
|
|
sudo screen -S smarthack-psk -X stuff '^C'
|