Difference between revisions of "Yum-upgrade-3.2.4"
From Linux-VServer
Daniel hozac (Talk | contribs) m (Yum-upgrade-3.2.4:Documentation moved to Yum-upgrade-3.2.4: Again, not a namespace.) |
(+cat) |
||
Line 9: | Line 9: | ||
done | done | ||
</pre> | </pre> | ||
+ | |||
+ | [[Category:Documentation]] |
Revision as of 20:04, 21 October 2011
yum-3.2.4 adds a new persistdir option. util-vserver-0.3.215 will set correct options but for existing installations they must be added manually. E.g. by
for i in /vservers/.pkg/*/yum; do ! grep -q ^persistdir= $i/etc/yum.conf || continue echo $i mkdir -p $i/lib # this is the new persistdir (yum defaults to <chroot>/var/lib/yum) sed -ie '/^cachedir=/{p;s/^cache\(.*\)cache/persist\1lib/}' $i/etc/yum.conf done