From 6cf96fd65d1ebc7996588ce993263d4a2e73a2b4 Mon Sep 17 00:00:00 2001 From: billz Date: Thu, 7 Mar 2019 22:12:38 +0000 Subject: [PATCH] Increased sleep value --- includes/hostapd.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/hostapd.php b/includes/hostapd.php index 16b627d5..18880515 100755 --- a/includes/hostapd.php +++ b/includes/hostapd.php @@ -28,9 +28,9 @@ function DisplayHostAPDConfig() if (CSRFValidate()) { $status->addMessage('Attempting to start hotspot', 'info'); if ($arrHostapdConf['WifiAPEnable'] == 1) { - exec('sudo /etc/raspap/hostapd/servicestart.sh --interface uap0 --seconds 3', $return ); + exec('sudo /etc/raspap/hostapd/servicestart.sh --interface uap0 --seconds 5', $return ); } else { - exec( 'sudo /etc/raspap/hostapd/servicestart.sh --seconds 3', $return ); + exec( 'sudo /etc/raspap/hostapd/servicestart.sh --seconds 5', $return ); } foreach( $return as $line ) { $status->addMessage($line, 'info');