Reorganize indexing scripts + use Rust for Debian

This commit is contained in:
Yorhel 2016-11-20 12:29:01 +01:00
parent 5d44d0e2ec
commit 2ee2f7495b
7 changed files with 142 additions and 148 deletions

13
util/arch.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/sh
. ./common.sh
case "$1" in
active)
MIRROR=http://ftp.nluug.nl/pub/os/Linux/distr/archlinux
REPOS="core extra community"
for REPO in $REPOS; do
index arch --sys arch --mirror $MIRROR --repo $REPO
done
;;
esac