proxy代理   soft软件   IT 业界特快   norton 诺顿病毒库   代理列表   search FTP搜索   whois IP地理位置   blog 追求完美  
money理财   life生活   RSS聚合门户   firefox WEB浏览器   免费域名   typeset 假古文   AntiVirus 反病毒   ipcn 站点导航  

« [HTML] 多帧网页制作中一个帧隐藏的解决方案 | Main | 2004年度 ipcn.org/ipchina.org 总结报告 »

December 30, 2004

rpm spec 中一个配置rpmnew的处理方式

版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本声明。
https://windtear.net/archives/2004/12/30/000540.html

单独用 config 只能处理如果配置改变 则老的存为 .rpmsave
%config /opt/ipcn/proxy/etc/proxy.conf

如果想保留老的 新装的安装为 .rpmnew
只能在 spec 的 %pre 和 %post 中做手脚了

%pre
# Move config files to safety
if test -f /opt/ipcn/proxy/etc/proxy.conf; then
mv -f /opt/ipcn/proxy/etc/proxy.conf /opt/ipcn/proxy/etc/proxy.conf.rpmtemp;
fi


%post
# Move config files back and new ones to a different name
if test -f /opt/ipcn/proxy/etc/proxy.conf.rpmtemp; then
if test -f /opt/ipcn/proxy/etc/proxy.conf; then
mv -f /opt/ipcn/proxy/etc/proxy.conf /opt/ipcn/proxy/etc/proxy.conf.rpmnew;
fi
mv -f /opt/ipcn/proxy/etc/proxy.conf.rpmtemp /opt/ipcn/proxy/etc/proxy.conf;
fi

本blog WWW

Posted by windtear at December 30, 2004 6:15 PM

本站使用中的任何问题,请与 windtear @ windtear.net 联系
Copyright© 1999-2024 Windtear. All rights reserved.