17 lines
609 B
Plaintext
17 lines
609 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# File: find-mirrors
|
||
|
#
|
||
|
# Description: This file generates a pacman mirrorlist to ensure hosts use the right mirrors for performance.
|
||
|
#
|
||
|
# Package: AniNIX::Foundation/HelloWorld
|
||
|
# Copyright: WTFPL
|
||
|
#
|
||
|
# Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
|
||
|
|
||
|
country="United States"
|
||
|
|
||
|
curl -s https://raw.githubusercontent.com/archlinux/svntogit-packages/packages/pacman-mirrorlist/trunk/mirrorlist | awk '/^## '"$country"'$/{f=1; next}f==0{next}/^$/{exit}{print substr($0, 1);}' | sed 's/^#Server/Server/' > /tmp/mirrorlist
|
||
|
rankmirrors -n 6 /tmp/mirrorlist > files/mirrorlist
|
||
|
rm /tmp/mirrorlist
|