Skip to content
Snippets Groups Projects
Commit 96bcdd36 authored by Bob Mottram's avatar Bob Mottram
Browse files

Exclude local when browsing with avahi

parent ee02c927
No related branches found
No related tags found
No related merge requests found
......@@ -1790,7 +1790,7 @@ function mesh_babel {
echo '#!/bin/bash' > $babel_script
echo '' >> $babel_script
echo 'if [[ $1 == "ls" || $1 == "list" ]]; then' >> $babel_script
echo ' avahi-browse -at' >> $babel_script
echo ' avahi-browse -atl' >> $babel_script
echo ' exit 0' >> $babel_script
echo 'fi' >> $babel_script
echo '' >> $babel_script
......@@ -2054,7 +2054,7 @@ function mesh_batman_bridge {
echo ' batctl ping $2' >> $batman_script
echo ' ;;' >> $batman_script
echo ' ls|list)' >> $batman_script
echo ' avahi-browse -at' >> $batman_script
echo ' avahi-browse -atl' >> $batman_script
echo ' ;;' >> $batman_script
echo ' *)' >> $batman_script
echo ' echo "error: invalid parameter $1"' >> $batman_script
......
......@@ -111,7 +111,7 @@ function mesh_babel {
echo '#!/bin/bash' > $babel_script
echo '' >> $babel_script
echo 'if [[ $1 == "ls" || $1 == "list" ]]; then' >> $babel_script
echo ' avahi-browse -at' >> $babel_script
echo ' avahi-browse -atl' >> $babel_script
echo ' exit 0' >> $babel_script
echo 'fi' >> $babel_script
echo '' >> $babel_script
......@@ -378,7 +378,7 @@ function mesh_batman {
echo ' batctl ping $2' >> $batman_script
echo ' ;;' >> $batman_script
echo ' ls|list)' >> $batman_script
echo ' avahi-browse -at' >> $batman_script
echo ' avahi-browse -atl' >> $batman_script
echo ' ;;' >> $batman_script
echo ' *)' >> $batman_script
echo ' echo "error: invalid parameter $1"' >> $batman_script
......
......@@ -42,7 +42,7 @@ if [ ! -f /tmp/meshtype ]; then
fi
fi
avahi-browse -at | awk -F ' ' '{print $4}' > $PEERS_FILE
avahi-browse -atl | grep "Workstation" | awk -F ' ' '{print $4}' > $PEERS_FILE
if [ ! -f $PEERS_FILE ]; then
echo 'No peers were found'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment