16 lines
279 B
Plaintext
16 lines
279 B
Plaintext
#!/usr/bin/openrc-run
|
|
# Copyright 2016 artoo (artoo@manjaro.org)
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
description="Pacman mirror ranking"
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|
|
start() {
|
|
ebegin "Running mirrors ranking"
|
|
/usr/bin/pacman-mirrors -f 5
|
|
eend $?
|
|
}
|