diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-02-27 00:47:57 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-02-27 00:47:57 +0000 |
commit | 54e14f91a321f2885ef7c35206be4628cb7f7778 (patch) | |
tree | c73d8bbf15077f40006cbbfbd1cfb36d5db9c4c8 /packages.py | |
parent | 4ef8253e24720fb6fd761348d255a2d8139c214c (diff) | |
download | anaconda-54e14f91a321f2885ef7c35206be4628cb7f7778.tar.gz anaconda-54e14f91a321f2885ef7c35206be4628cb7f7778.tar.xz anaconda-54e14f91a321f2885ef7c35206be4628cb7f7778.zip |
add /etc/rpm/macros to my list
Diffstat (limited to 'packages.py')
-rw-r--r-- | packages.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages.py b/packages.py index d503971b0..f018d4212 100644 --- a/packages.py +++ b/packages.py @@ -1244,8 +1244,9 @@ def setFileCons(instPath): rpmfiles = os.listdir(instPath + "/var/lib/rpm") rpmfiles = map(addpath, rpmfiles) - files = ["/etc/rpm/platform", "/etc/lilo.conf", - "/etc/lilo.conf.anaconda", "/etc/mtab", "/etc/resolv.conf", + files = ["/etc/rpm/platform", "/etc/rpm/macros", + "/etc/lilo.conf", "/etc/lilo.conf.anaconda", + "/etc/mtab", "/etc/resolv.conf", "/etc/modprobe.conf", "/etc/modprobe.conf~", "/var/lib/rpm", "/"] + rpmfiles |