diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2006-11-23 10:49:51 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2006-11-23 10:49:51 +0000 |
commit | 6aed7e5429cab61514fe2eb3cacad3d11462cd5f (patch) | |
tree | 514c973cd20132c03770c87eca82ab248e10446b /urpmi.update | |
parent | 0bf8f352836b0e1b584638789558246871912a87 (diff) | |
download | urpmi-6aed7e5429cab61514fe2eb3cacad3d11462cd5f.tar urpmi-6aed7e5429cab61514fe2eb3cacad3d11462cd5f.tar.gz urpmi-6aed7e5429cab61514fe2eb3cacad3d11462cd5f.tar.bz2 urpmi-6aed7e5429cab61514fe2eb3cacad3d11462cd5f.tar.xz urpmi-6aed7e5429cab61514fe2eb3cacad3d11462cd5f.zip |
- move lock functions to a full blown module
- handle get_exclusive and release_exclusive on existing lock,
*but* don't use it for now! (not useful)
- remove urpmi_db locking from add_medium and update_media
- move rpm_db locking into _read_cachedir_pubkey
- update_media: restrict rpm_db exclusive locking to parse_pubkeys
- urpmi: move locking rpm_db near its use
- handle lock directly in urpmi.addmedia, urpmi.update, urpme, urpmf
- log locking/unlocking
Diffstat (limited to 'urpmi.update')
-rwxr-xr-x | urpmi.update | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/urpmi.update b/urpmi.update index e86f4013..fac9cd8d 100755 --- a/urpmi.update +++ b/urpmi.update @@ -68,6 +68,7 @@ $options{verbose} > 0 or $urpm->{log} = sub {}; if ($< != 0) { $urpm->{fatal}(1, N("Only superuser is allowed to update media")); } +my $_urpmi_lock = urpm::lock::urpmi_db($urpm, 'exclusive'); urpm::media::read_config($urpm); my @entries = map { $_->{name} } @{$urpm->{media}}; |