diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2009-12-10 16:07:43 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2009-12-10 16:07:43 +0100 |
commit | 9307ef07498d37c0b5e05b036195abaf7ad0105c (patch) | |
tree | cf85e1f46b31161dc4c601fa79fc76a85154d696 /apt-pkg/deb | |
parent | 1eb5622017241e874016b759625b2b706ed9a74c (diff) | |
parent | e4b16ac68196eab5e58abf715459fe70c199cff3 (diff) |
* merge lp:~mvo/apt/netrc branch, this adds support for a
/etc/apt/auth.conf that can be used to store username/passwords
in a "netrc" style file (with the extension that it supports "/"
in a machine definition). Based on the maemo git branch.
* apt-pkg/deb/dpkgpm.cc:
- add "purge" to list of known actions
Diffstat (limited to 'apt-pkg/deb')
-rw-r--r-- | apt-pkg/deb/dpkgpm.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index adaf362fa..6eb3b40ac 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -49,6 +49,7 @@ namespace std::make_pair("install", N_("Installing %s")), std::make_pair("configure", N_("Configuring %s")), std::make_pair("remove", N_("Removing %s")), + std::make_pair("purge", N_("Completely removing %s")), std::make_pair("trigproc", N_("Running post-installation trigger %s")) }; |