From c845d4ffaf1c2bedb43e1bcb16896d9722db735b Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 15 Nov 2010 14:25:29 +0100 Subject: doc/examples/configure-index: updated to include apt::changelogs::server --- doc/examples/configure-index | 97 ++++++++++++++++++++++++-------------------- 1 file changed, 52 insertions(+), 45 deletions(-) (limited to 'doc') diff --git a/doc/examples/configure-index b/doc/examples/configure-index index c4c2acb64..ef4cff8a1 100644 --- a/doc/examples/configure-index +++ b/doc/examples/configure-index @@ -114,54 +114,61 @@ APT // does a ExecFork) Keep-Fds {}; + Changelogs + { + // server the provides the changelogs, the code will automatically + // append "/changelogs/pool/%s/%s/%s/%s_%s/changelog" to the uri + Server "http://packages.debian.org/"; + }: + // control parameters for cron jobs by /etc/cron.daily/apt Periodic { - BackupArchiveInterval "0"; - // - Backup after n-days if archive contents changed.(0=disable) - - BackupLevel "3"; - // - Backup level.(0=disable), 1 is invalid. - - // APT::Archives::MaxAge "0"; (old, deprecated) - MaxAge "0"; // (new) - // - Set maximum allowed age of a cache package file. If a cache - // package file is older it is deleted (0=disable) - - // APT::Archives::MinAge "2"; (old, deprecated) - MinAge "2"; // (new) - // - Set minimum age of a package file. If a file is younger it - // will not be deleted (0=disable). Usefull to prevent races - // and to keep backups of the packages for emergency. - - // APT::Archives::MaxSize "0"; (old, deprecated) - MaxSize "0"; // (new) - // - Set maximum size of the cache in MB (0=disable). If the cache - // is bigger, cached package files are deleted until the size - // requirement is met (the biggest packages will be deleted - // first). - - Update-Package-Lists "0"; - // - Do "apt-get update" automatically every n-days (0=disable) - // - Download-Upgradeable-Packages "0"; - // - Do "apt-get upgrade --download-only" every n-days (0=disable) - // - Unattended-Upgrade "0"; - // - Run the "unattended-upgrade" security upgrade script - // every n-days (0=disabled) - // Requires the package "unattended-upgrades" and will write - // a log in /var/log/unattended-upgrades - // - AutocleanInterval "0"; - // - Do "apt-get autoclean" every n-days (0=disable) - - Verbose "0"; - // - Send report mail to root - // 0: no report (or null string) - // 1: progress report (actually any string) - // 2: + command outputs (remove -qq, remove 2>/dev/null, add -d) - // 3: + trace on + BackupArchiveInterval "0"; + // - Backup after n-days if archive contents changed.(0=disable) + + BackupLevel "3"; + // - Backup level.(0=disable), 1 is invalid. + + // APT::Archives::MaxAge "0"; (old, deprecated) + MaxAge "0"; // (new) + // - Set maximum allowed age of a cache package file. If a cache + // package file is older it is deleted (0=disable) + + // APT::Archives::MinAge "2"; (old, deprecated) + MinAge "2"; // (new) + // - Set minimum age of a package file. If a file is younger it + // will not be deleted (0=disable). Usefull to prevent races + // and to keep backups of the packages for emergency. + + // APT::Archives::MaxSize "0"; (old, deprecated) + MaxSize "0"; // (new) + // - Set maximum size of the cache in MB (0=disable). If the cache + // is bigger, cached package files are deleted until the size + // requirement is met (the biggest packages will be deleted + // first). + + Update-Package-Lists "0"; + // - Do "apt-get update" automatically every n-days (0=disable) + // + Download-Upgradeable-Packages "0"; + // - Do "apt-get upgrade --download-only" every n-days (0=disable) + // + Unattended-Upgrade "0"; + // - Run the "unattended-upgrade" security upgrade script + // every n-days (0=disabled) + // Requires the package "unattended-upgrades" and will write + // a log in /var/log/unattended-upgrades + // + AutocleanInterval "0"; + // - Do "apt-get autoclean" every n-days (0=disable) + + Verbose "0"; + // - Send report mail to root + // 0: no report (or null string) + // 1: progress report (actually any string) + // 2: + command outputs (remove -qq, remove 2>/dev/null, add -d) + // 3: + trace on }; }; -- cgit v1.2.3 From a53b07bbef4917884a8e4d7740b4d0786f029f5c Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 18 Nov 2010 11:47:49 +0100 Subject: refactor/simplify changelog fetching code --- doc/examples/configure-index | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'doc') diff --git a/doc/examples/configure-index b/doc/examples/configure-index index ef4cff8a1..b87251103 100644 --- a/doc/examples/configure-index +++ b/doc/examples/configure-index @@ -116,9 +116,10 @@ APT Changelogs { - // server the provides the changelogs, the code will automatically - // append "/changelogs/pool/%s/%s/%s/%s_%s/changelog" to the uri - Server "http://packages.debian.org/"; + // server the provides the changelogs, the code will assume + // the changlogs are in the pool/ under a srcpkg_ver directory + // with the name "changelog" + Server "http://packages.debian.org/changelogs"; }: // control parameters for cron jobs by /etc/cron.daily/apt -- cgit v1.2.3 From b05b220ba3f5dd15b942572572d2d86b89904fea Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 18 Nov 2010 12:20:56 +0100 Subject: doc/apt-get.8.xml: document based on the work from Martin Pitt (thanks!) --- doc/apt-get.8.xml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'doc') diff --git a/doc/apt-get.8.xml b/doc/apt-get.8.xml index abdec96c1..581b23176 100644 --- a/doc/apt-get.8.xml +++ b/doc/apt-get.8.xml @@ -299,6 +299,23 @@ autoremove is used to remove packages that were automatically installed to satisfy dependencies for some package and that are no more needed. + + changelog + changelog downloads a package changelog and displays + it through sensible-pager. The server name and base + directory is defined in the APT::Changelogs::Server + variable (e. g. http://packages.debian.org/changelogs for + Debian or http://changelogs.ubuntu.com/changelogs for + Ubuntu). + By default it displays the changelog for the version that is + installed. However, you can specify the same options as for + the command. + + + + + + -- cgit v1.2.3 From 6f976e5dd7ccc27d48b6a000fed0c553bd017d34 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 18 Nov 2010 12:56:33 +0100 Subject: doc/apt-get.8.xml: document download --- doc/apt-get.8.xml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'doc') diff --git a/doc/apt-get.8.xml b/doc/apt-get.8.xml index 57306c03f..e43d41df1 100644 --- a/doc/apt-get.8.xml +++ b/doc/apt-get.8.xml @@ -278,6 +278,12 @@ for broken dependencies. + download + download will download the given + binary package into the current directoy. + + + clean clean clears out the local repository of retrieved package files. It removes everything but the lock file from -- cgit v1.2.3