diff options
author | Stew Benedict <stewb@mandriva.org> | 2005-02-28 21:11:41 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2005-02-28 21:11:41 +0000 |
commit | b58889f613cfb9fad71b34d7bc64efbdfbd53575 (patch) | |
tree | b22c0808a8dcc70a5532874be8412bbf205c200e /perl-install | |
parent | 49dbf3b4a53c0bdc8c13df7026c3ccbde2a30ded (diff) | |
download | drakx-b58889f613cfb9fad71b34d7bc64efbdfbd53575.tar drakx-b58889f613cfb9fad71b34d7bc64efbdfbd53575.tar.gz drakx-b58889f613cfb9fad71b34d7bc64efbdfbd53575.tar.bz2 drakx-b58889f613cfb9fad71b34d7bc64efbdfbd53575.tar.xz drakx-b58889f613cfb9fad71b34d7bc64efbdfbd53575.zip |
Bugzilla 13998 - Sort list of nbis.
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakTermServ | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakTermServ b/perl-install/standalone/drakTermServ index b28dc80b6..9ca39ef0d 100755 --- a/perl-install/standalone/drakTermServ +++ b/perl-install/standalone/drakTermServ @@ -815,7 +815,7 @@ sub clear_nbi { sub update_list { my ($list_model) = @_; $list_model->clear; - $list_model->append_set(0, $_) foreach grep { /\.nbi/ } all($tftpboot); + $list_model->append_set(0, $_) foreach grep { /\.nbi/ } sort(all($tftpboot)); } sub build_n_update { |