# $HeadURL$ $LastChangedRevision$ ############################################################################## # # Internal variables (defined for convenience and referenced only from within # this file) # ############################################################################## _RELEASES="squeeze" _PORTS="i386 amd64" _SECTIONS="main non-free" ############################################################################## # # Repository contents (defines what is in or may be inserted into this repo) # ############################################################################## # The set of *all* releases, ports and sections this repository will contain. for _RELEASE in $_RELEASES; do release $_RELEASE for _PORT in $_PORTS; do port $_RELEASE $_PORT done for _SECTION in $_SECTIONS; do section $_RELEASE $_SECTION done 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 compat $_RELEASE deb debian $_RELEASE done ############################################################################## # # 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 "debmirror --i18n --ignore-release-gpg --getcontents --nosource --method=http --host=deb-multimedia.org --root=/ --arch=${_PORTS// /,} --dist=${_RELEASES// /,} --section=${_SECTIONS// /,} ."