diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/netcfg-menu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netcfg-menu b/src/netcfg-menu index 4da1291..01d251a 100755 --- a/src/netcfg-menu +++ b/src/netcfg-menu @@ -7,7 +7,7 @@ # Scan all profiles i=0 -for prof in `find -L $PROFILE_DIR -maxdepth 1 -type f -printf "%f\n"`; do +for prof in `find -L $PROFILE_DIR -maxdepth 1 -type f -printf "%f\n"|sort`; do # if there is a profile called "main", Use as default [ "$prof" = "main" ] && DEFAULT=$prof unset DESCRIPTION |