summaryrefslogtreecommitdiff
path: root/releng-openrc/airootfs/etc/NetworkManager/dispatcher.d/reflector
blob: 850d048ab512d2122e7825c598464207a97a8c22 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

if [ "$2" == up ] && ! grep -qoP 'mirror=\K\S+' /proc/cmdline; then
  reflector \
    --save /etc/pacman.d/mirrorlist \
    --ipv4 \
    --ipv6 \
    --protocol https \
    --latest 20 \
    --sort rate
fi