# $HeadURL$ $LastChangedRevision$ ############################################################################## # # Internal variables (defined for convenience and referenced only from within # this file) # ############################################################################## _RELEASES="6" _PORTS="x86_64" _LAYOUT="/" _SIMILAR_DISTROS="scientificlinux rhel centos" ############################################################################## # # Repository contents (defines what is in or may be inserted into this repo) # ############################################################################## # The set of *all* releases and ports this repository will contain. for _RELEASE in $_RELEASES; do release $_RELEASE for _PORT in $_PORTS; do port $_RELEASE $_PORT done layout $_RELEASE $_LAYOUT done ############################################################################## # # Compatibility (defines on which distros each release in this non-distro # repo may be installed) # ############################################################################## # Each release in this repository is compatible with which distros? for _RELEASE in $_RELEASES; do for _SIMILAR_DISTRO in $_SIMILAR_DISTROS; do for _MINOR_RELEASE in $_RELEASE $_RELEASE.{1..9}; do compat $_RELEASE rpm $_SIMILAR_DISTRO $_MINOR_RELEASE done done done compat 6 rpm fedora \* compat 6 rpm sles \* ############################################################################## # # Misc settings # ############################################################################## # URL for the repo url "http://install.pasta.net/./" # The path to your mirror mirror_dir "/pub/mirrors/" # The path to your freezes freeze_dir "/pub/freezes/." # The path to your indirect indirect_dir "/pub/indirects/." # The command to update the mirror in the current directory. mirror_cmd "rpmmirror --releases=${_RELEASES// /,} --ports=${_PORTS// /,} --layout=\"$_LAYOUT\" rsync://rsync.uni-bayreuth.de/fedora-epel ."