There seem to be an issue with new-installer.
It do not contain apt-cacher-ng stuff.
Gonna solve that asap.
/niz23
Awesome, thanks.
It´s now committed to our svn and will be included in next alpha release.
For now apt-cacher-ng will only be automatically installed when you install a new core with the new new-installer script that will be available next alpha release.
I will publish a short wiki article how to update previous alpha releases to contain apt-cacher-ng.
In short you do "apt-get install apt-cacher-ng" on your core.
Then create a file named 02proxy in /etc/apt/apt.conf.d/ on your core.
The file should contain only on row. Like below:
Acquire::http { Proxy "
http://localhost:3142"; };
To manually configure your previously created MDs you need to copy this 02proxy file to /usr/pluto/diskless/<MDid>/etc/apt/apt.conf.d/
Be sure to change localhost so that your MD point to either your core´s hostname or your internal IP.
Example 02proxy file for MDs:
Acquire::http { Proxy "
http://192.168.80.1:3142"; };
Everytime you do apt-get update or dist-upgrade from your core or from MDs already downloaded packages will be fetched from apt-cacher-ng´s cache.
/niz23