Parcourir la source

adding iw full path

keoma il y a 6 ans
Parent
commit
5c604193e0
3 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 1 1
      conf/iw_devices
  2. 2 2
      conf/iw_multissid
  3. 1 1
      conf/iw_ssids

+ 1 - 1
conf/iw_devices

@@ -17,4 +17,4 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-echo -n $(iw dev | grep Interface | grep -v 'mon\.' | grep -v hotspot | awk '{ print $NF }') | tr ' ' \|
+echo -n $(/sbin/iw dev | grep Interface | grep -v 'mon\.' | grep -v hotspot | awk '{ print $NF }') | tr ' ' \|

+ 2 - 2
conf/iw_multissid

@@ -17,8 +17,8 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-phy=$(iw "${1}" info | grep wiphy | awk '{ print $NF }')
-multissid=$(iw "phy${phy}" info | grep -A1 'valid interface combinations' | tail -n1 | sed 's/.*{.*AP.*}\s<=\s\(.*\),.*/\1/')
+phy=$(/sbin/iw "${1}" info | grep wiphy | awk '{ print $NF }')
+multissid=$(/sbin/iw "phy${phy}" info | grep -A1 'valid interface combinations' | tail -n1 | sed 's/.*{.*AP.*}\s<=\s\(.*\),.*/\1/')
 
 if [ -z "${multissid}" ]; then
   echo 1

+ 1 - 1
conf/iw_ssids

@@ -17,4 +17,4 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-echo -n hotspot0 $(iw dev | grep Interface | grep hotspot | awk '{ print $NF }') | tr ' ' \|
+echo -n hotspot0 $(/sbin/iw dev | grep Interface | grep hotspot | awk '{ print $NF }') | tr ' ' \|