Browse Source

fastd: Show fastd connection stats in sorted order

Signed-off-by: Maximilian Wilhelm <max@sdn.clinic>
Maximilian Wilhelm 3 years ago
parent
commit
5ec2e515d5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      fastd/ff_fastd_con

+ 1 - 1
fastd/ff_fastd_con

@@ -17,7 +17,7 @@ fastd_con () {
 }
 
 if [ "${1}" = '-a' ]; then
-	for fastd_instance in $(find /etc/fastd -mindepth 1 -maxdepth 1 -type d  -exec basename {} \;); do
+	for fastd_instance in $(find /etc/fastd -mindepth 1 -maxdepth 1 -type d  -exec basename {} \; | sort); do
 		fastd_con ${fastd_instance}
 	done
 else