diff options
Diffstat (limited to 'extra/coadde/mkrepo')
-rwxr-xr-x | extra/coadde/mkrepo | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/extra/coadde/mkrepo b/extra/coadde/mkrepo deleted file mode 100755 index b11dc0b..0000000 --- a/extra/coadde/mkrepo +++ /dev/null @@ -1,15 +0,0 @@ -#!/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" - -for repo in "$@"; do - echo ":: Creating [$repo]" - for arch in "${ARCHES[@]}"; do - mkdir -pv "${FTP_BASE}/${repo}/os/${arch}" - done -done - -echo ":: All done. Add the repo to the ParabolaWeb admin page." |