15.3. Creating a Package Repository for APT
Falcot Corp gradually started maintaining a number of Debian packages either locally modified from existing packages or created from scratch to distribute internal data and programs.
To make deployment easier, they want to integrate these packages in a package archive that can be directly used by APT. For obvious maintenance reasons, they wish to separate internal packages from locally-rebuilt packages. The goal is for the matching entries in a /etc/apt/sources.list.d/falcot.list
file to be as follows:
- deb http://packages.falcot.com/ updates/
- deb http://packages.falcot.com/ internal/
The administrators therefore configure a virtual host on their internal HTTP server, with /srv/vhosts/packages/
as the root of the associated web space. The management of the archive itself is delegated to the mini-dinstall
command (in the similarly-named package). This tool keeps an eye on an incoming/
directory (in our case, /srv/vhosts/packages/mini-dinstall/incoming/
) and waits for new packages there; when a package is uploaded, it is installed into a Debian archive at /srv/vhosts/packages/
. The mini-dinstall
command reads the *.changes
file created when the Debian package is generated. These files contain a list of all other files associated with the version of the package (*.deb
, *.dsc
, *.diff.gz
/*.debian.tar.gz
, *.orig.tar.gz
, or their equivalents with other compression tools), and these allow mini-dinstall
to know which files to install. *.changes
files also contain the name of the target distribution (often unstable
) mentioned in the latest debian/changelog
entry, and mini-dinstall
uses this information to decide where the package should be installed. This is why administrators must always change this field before building a package, and set it to internal
or updates
, depending on the target location. mini-dinstall
then generates the files required by APT, such as Packages.gz
.
ALTERNATIVE apt-ftparchive
If mini-dinstall
seems too complex for your Debian archive needs, you can also use the apt-ftparchive
command. This tool scans the contents of a directory and displays (on its standard output) a matching Packages
file. In the Falcot Corp case, administrators could upload the packages directly into /srv/vhosts/packages/updates/
or /srv/vhosts/packages/internal/
, then run the following commands to create the Packages.gz
files:
$
The apt-ftparchive sources
command allows creating Sources.gz
files in a similar fashion.
Configuring mini-dinstall
requires setting up a ~/.mini-dinstall.conf
file; in the Falcot Corp case, the contents are as follows:
- [DEFAULT]
- archive_style = flat
- archivedir = /srv/vhosts/packages
- verify_sigs = 0
- mail_to = admin@falcot.com
- generate_release = 1
- release_origin = Falcot Corp
- release_codename = stable
- [updates]
- release_label = Recompiled Debian Packages
- [internal]
- release_label = Internal Packages
One decision worth noting is the generation of Release
files for each archive. This can help manage package installation priorities using the /etc/apt/preferences
configuration file (see 第 6.2.5 节 “包的优先级管理” for details).
SECURITY mini-dinstall
and permissions
Since mini-dinstall
has been designed to run as a regular user, there’s no need to run it as root. The easiest way is to configure everything within the user account belonging to the administrator in charge of creating the Debian packages. Since only this administrator has the required permissions to put files in the incoming/
directory, we can deduce that the administrator authenticated the origin of each package prior to deployment and mini-dinstall
does not need to do it again. This explains the verify_sigs = 0
parameter (which means that signatures need not be verified). However, if the contents of packages are sensitive, we can reverse the setting and elect to authenticate with a keyring containing the public keys of persons allowed to create packages (configured with the extra_keyrings
parameter); mini-dinstall
will then check the origin of each incoming package by analyzing the signature integrated to the *.changes
file.
Invoking mini-dinstall
actually starts a daemon in the background. As long as this daemon runs, it will check for new packages in the incoming/
directory every half-hour; when a new package arrives, it will be moved to the archive and the appropriate Packages.gz
and Sources.gz
files will be regenerated. If running a daemon is a problem, mini-dinstall
can also be manually invoked in batch mode (with the -b
option) every time a package is uploaded into the incoming/
directory. Other possibilities provided by mini-dinstall
are documented in its mini-dinstall(1) manual page.
EXTRA Generating a signed archive
The APT suite checks a chain of cryptographic signatures on the packages it handles before installing them, in order to ensure their authenticity (see 第 6.5 节 “检查软件包真伪”). Private APT archives can then be a problem, since the machines using them will keep displaying warnings about unsigned packages. A diligent administrator will therefore integrate private archives with the secure APT mechanism.
To help with this process, mini-dinstall
includes a release_signscript
configuration option that allows specifying a script to use for generating the signature. A good starting point is the sign-release.sh
script provided by the mini-dinstall package in /usr/share/doc/mini-dinstall/examples/
; local changes may be relevant.