~ubuntu-core-dev/update-notifier/ubuntu

1 by mvo
* inital checkin
1
Upgrade notifier tray icon
2
--------------------------
3
4
This is a small tray icon that backgrounds itself and checks for
299 by Michael Vogt
* HOOKS: added documentation for the hooks
5
upgrades. It must be ensured by other means (like a cron job) that a
6
regular "apt-get update" is done. This is ensured by installing a
804 by Brian Murray
fix typo
7
option into /etc/apt/apt.conf.d to trigger a cron update script.
577 by Michael Vogt
* README:
8
9
It uses the following file from the apt package for the updating
10
of the package information:
11
  /etc/cron.daily/apt
12
804 by Brian Murray
fix typo
13
The following files are installed as part of the update-notifier-common
577 by Michael Vogt
* README:
14
package and trigger regular the /etc/cron.daily/apt job:
15
  /etc/apt/apt.conf.d/10periodic
16
  /etc/apt/apt.conf.d/20archive
17
804 by Brian Murray
fix typo
18
The "10periodic" file controls how often (in days) certain actions are
577 by Michael Vogt
* README:
19
run. The most common one is: APT::Periodic::Update-Package-Lists is
20
used for the "apt-get update". The header of /etc/cron.daily/apt
804 by Brian Murray
fix typo
21
contains more information of the individual options.
577 by Michael Vogt
* README:
22
804 by Brian Murray
fix typo
23
The "20archive" file controls the packages (.deb) cache in
577 by Michael Vogt
* README:
24
/var/cache/apt/archives - it can be used to define a maximum total
25
size for the deb files there and the time (in days) until they get
26
deleted. See the header of /etc/cron.daily/apt for more details.
27
28
It uses GIO to monitor /var/lib/apt/lists/* and
299 by Michael Vogt
* HOOKS: added documentation for the hooks
29
/var/lib/update-notifier/dpkg-run-stamp. If they change it updates
30
it's status.
61 by mvo
* cleanups:
31
299 by Michael Vogt
* HOOKS: added documentation for the hooks
32
It also supports interactive hooks and reboot notification support,
804 by Brian Murray
fix typo
33
see HOOKS for details.
299 by Michael Vogt
* HOOKS: added documentation for the hooks
34
755 by Brian Murray
Remove calls to gnome-app-install and addon CD support (LP: #722887)
35
It will detect if a new distribution CD is inserted.
299 by Michael Vogt
* HOOKS: added documentation for the hooks
36
37
Additionally it has grown avahi and crash report collection
577 by Michael Vogt
* README:
38
support. Both are Ubuntu specific.
1 by mvo
* inital checkin
39
40
Based on ideas of Matt Zimmerman und Jeff Waught. Tray example from
8 by mvo
* dbus-ified the applet
41
Lukas Lipka <lukas@pmad.net>. Lot's of cleanups from Michiel Sikkes.
42
Thanks!
1 by mvo
* inital checkin
43
44
Michael Vogt