├── .gitignore ├── README.md ├── centos.sh ├── debian.sh ├── fedora-epel.sh └── ubuntu.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | list.* 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hudecof/apt-cacher-ng-remap/HEAD/README.md -------------------------------------------------------------------------------- /centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hudecof/apt-cacher-ng-remap/HEAD/centos.sh -------------------------------------------------------------------------------- /debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hudecof/apt-cacher-ng-remap/HEAD/debian.sh -------------------------------------------------------------------------------- /fedora-epel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hudecof/apt-cacher-ng-remap/HEAD/fedora-epel.sh -------------------------------------------------------------------------------- /ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hudecof/apt-cacher-ng-remap/HEAD/ubuntu.sh --------------------------------------------------------------------------------