From 692d59d4aa586a674940f2a96d0cd16e1f5d1287 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Tue, 1 Mar 2011 14:05:14 +0000 Subject: setup-apkrepos: mionor cleanup use get_hostname_from_url function to make it more readable --- setup-apkrepos.in | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'setup-apkrepos.in') diff --git a/setup-apkrepos.in b/setup-apkrepos.in index 7c7da29..3c7f6b8 100755 --- a/setup-apkrepos.in +++ b/setup-apkrepos.in @@ -20,6 +20,11 @@ if [ -r "$APKREPOS_PATH" ]; then APKREPOS=`cat "$APKREPOS_PATH"` fi +get_hostname_from_url() { + local n=${1#*://} + echo ${n%%/*} +} + prompt_setup_method() { while true; do echo "How would you like to set up internet apk repositories?" @@ -50,9 +55,7 @@ get_random_mirror() { i=`expr $i + 1` done - random_mirror_hostname=`echo $mirror | awk -F '://' '{print $2}' | awk -F '/' '{print $1}'` - - echo "using $random_mirror_hostname." + echo "using $(get_hostname_from_url $mirror)" } get_fastest_mirror() { @@ -90,11 +93,6 @@ get_fastest_mirror() { mirror=$mirror_lowest_rtt_mirror } -get_hostname_from_url() { - local n=${1#*://} - echo ${n%%/*} -} - prompt_mirror_list() { local i local mirror_hostname -- cgit v1.2.3