diff options
author | Nagy Gabor <ngaba@bibl.u-szeged.hu> | 2009-05-14 18:25:16 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-07-22 20:16:52 -0500 |
commit | 1d19f0896ccc1560a7e2f5b93cfe095b4aefe84a (patch) | |
tree | fc8916e5fb63e474d3cdcd8af937b1c6d07d811d /lib/libalpm/sync.h | |
parent | ca6ef852f9944ad31e8a136f7faf71da2c5fb57f (diff) | |
download | pacman-1d19f0896ccc1560a7e2f5b93cfe095b4aefe84a.tar.xz |
Introduce -Suu
If the user switches from unstable repo to a stable one, it is quite hard to
sync its system with the new repo (the user will see many "Local is newer
than stable" messages, nothing more). That's why I introduced -Suu, which
treats a sync package like an upgrade, iff the package version doesn't match
with the local one's.
I added a new pactest (sync104.py) to test this, and I updated the
documentation of -Su.
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
[Dan: slight doc reword]
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/sync.h')
-rw-r--r-- | lib/libalpm/sync.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/sync.h b/lib/libalpm/sync.h index 5d642073..c2905a45 100644 --- a/lib/libalpm/sync.h +++ b/lib/libalpm/sync.h @@ -24,7 +24,7 @@ #include "alpm.h" -int _alpm_sync_sysupgrade(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t *dbs_sync); +int _alpm_sync_sysupgrade(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t *dbs_sync, int enable_downgrade); int _alpm_sync_addtarget(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t *dbs_sync, char *name); int _alpm_sync_prepare(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t *dbs_sync, alpm_list_t **data); |