mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-24 08:48:50 -05:00
0d2600c575
This is not something that should be used on a frequent basis, and giving it a short option encourages use without making the drawbacks obvious. For the 1% of situations that require it, the 5 extra keystrokes are a fair price to pay. Signed-off-by: Dan McGee <dan@archlinux.org>
16 lines
417 B
Python
16 lines
417 B
Python
self.description = "Install a package with an existing file (--force)"
|
|
|
|
p = pmpkg("dummy")
|
|
p.files = ["etc/dummy.conf"]
|
|
self.addpkg(p)
|
|
|
|
self.filesystem = ["etc/dummy.conf"]
|
|
|
|
self.args = "-U --force %s" % p.filename()
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("PKG_EXIST=dummy")
|
|
self.addrule("FILE_MODIFIED=etc/dummy.conf")
|
|
self.addrule("!FILE_PACNEW=etc/dummy.conf")
|
|
self.addrule("!FILE_PACORIG=etc/dummy.conf")
|