diff --git a/FAQs.md b/FAQs.md index d184429..178c94e 100644 --- a/FAQs.md +++ b/FAQs.md @@ -117,14 +117,14 @@ Yes, you can run RaspAP and [Adguard Home](https://github.com/AdguardTeam/AdGuar Yes, the [nodogsplash project](https://github.com/nodogsplash/nodogsplash) works just fine with RaspAP and is recommended over other methods. A detailed setup guide is [available here](https://github.com/billz/raspap-webgui/wiki/Captive-portal-setup). ## How do I create a hotspot activation schedule? -This is a common function in consumer wireless routers. For example, let's assume you want to disable wifi on Monday, Tuesday and Friday between 02:00 and 08:00. You can implement this with cron to stop/start RaspAP's service control script at certain times. Run `sudo crontab -e` and add entries like so: +This is a common function in consumer wireless routers. For example, let's assume you want to disable wifi on Monday and Tuesday between 02:00 and 08:00. You can implement this with cron to stop/start RaspAP's service control script at certain times. Run `sudo crontab -e` and add entries like so: ``` # Stop RaspAP services at 02:00 on Monday and Tuesday -0 2 * * 1,2,5 sudo /etc/raspap/hostapd/servicestart.sh --action stop +0 2 * * 1,2 sudo /etc/raspap/hostapd/servicestart.sh --action stop # Start RaspAP services at 08:00 on Monday and Tuesday -0 8 * * 1,2,5 sudo /etc/raspap/hostapd/servicestart.sh --seconds 3 +0 8 * * 1,2 sudo /etc/raspap/hostapd/servicestart.sh --seconds 3 ``` For help with crontab, head over to crontab.guru.