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

« back to all changes in this revision

Viewing changes to README

  • Committer: mvo
  • Date: 2005-02-08 00:25:09 UTC
  • Revision ID: gustavo@niemeyer.net-20050208002509-a211f90ce9367f80
* cleanups:
  - configure.in: no longer need libglade
  - src/update-notifier{c,h}: we no longer use dbus directly only libhal
  - src/update.c: added comment to update_check() 
  - README: reflect the latest developments (no direct dbus use etc)
  - data/Makefile.am: don't distribute the dbus helper script

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
--------------------------
3
3
 
4
4
This is a small tray icon that backgrounds itself and checks for
5
 
upgrades every 60 minutes. It does nothing more. It must be ensured
6
 
by other means (like a cron job) that a regular "apt-get update" is
7
 
done. This is ensured by installing a option into /etc/apt/apt.conf.d
8
 
to trigger a cron update script.
9
 
 
10
 
Needs libgnomeui2.0-dev and dbus-glib-1-dev to build and gksu to run.
11
 
 
12
 
The dbus interface is pretty simple. The applet will listen on:
13
 
"app.apt.dbus" for the following signal:
14
 
- changed: some packages where removed/added/upgraded
15
 
- updated: the package list was updated
 
5
upgrades. It does nothing more. It must be ensured by other means
 
6
(like a cron job) that a regular "apt-get update" is done. This is
 
7
ensured by installing a option into /etc/apt/apt.conf.d to trigger a
 
8
cron update script. It uses FAM to monitor /var/lib/apt/lists/* and 
 
9
/var/lib/update-notifier/dpkg-run-stamp. If they change it updates it's
 
10
status.
 
11
 
 
12
Needs libgnomeui2.0-dev and libhal-dev to build and gksu to run.
 
13
 
16
14
 
17
15
Based on ideas of Matt Zimmerman und Jeff Waught. Tray example from
18
16
Lukas Lipka <lukas@pmad.net>. Lot's of cleanups from Michiel Sikkes.