summaryrefslogtreecommitdiff
path: root/mkrepo
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-06-17 19:24:48 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-06-17 19:24:48 -0400
commit827e305df0f565d7da844684290323a75bf081a6 (patch)
tree9753469d58a11b434d8da109c00a23c0e721a52d /mkrepo
parentd42f5c6ab02a861ef548ae12fe403f61e2b02e4f (diff)
parent1d5db10302f0a0517c022fae4b6a66862eb7e2cf (diff)
Merge branch 'lukeshu/archlinux+xbs+merge-parabola' into lukeshu/archlinux+xbs+db-import
Diffstat (limited to 'mkrepo')
-rwxr-xr-xmkrepo24
1 files changed, 24 insertions, 0 deletions
diff --git a/mkrepo b/mkrepo
new file mode 100755
index 0000000..10d014b
--- /dev/null
+++ b/mkrepo
@@ -0,0 +1,24 @@
+#!/bin/bash
+# Author: Nicolás Reynolds <fauno@kiwwwi.com.ar>
+# License: GPLv3+
+# Description: A script to quickly create new [repos]
+
+source "$(dirname "$(readlink -e "$0")")/config"
+source "$(dirname "$(readlink -e "$0")")/local_config"
+
+# TODO it would be simpler to expand arrays to {element1,element2,etc}
+for repo in $@; do
+
+ echo ":: Creating [$repo]"
+ mkdir -pv ${repodir}/{staging/,}${repo}
+
+ for arch in ${ARCHES[@]}; do
+ mkdir -pv ${repodir}/${repo}/os/${arch}
+ done
+
+done
+
+echo ":: All done. Add the repo to the parabolaweb admin page"
+echo " and the get_repos script on the same server."
+
+exit $?