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的处理方式

版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本声明。
http://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

Trackback Pings

TrackBack URL for this entry:
http://cgi.windtear.net/cgi-bin/wt-tb.cgi/540

Comments

%config(noreplace)
可实现.rpmnew

Posted by: soul at September 7, 2005 12:46 PM

nodnod

当时研究不精
后来学到了这一招

多谢

Posted by: windtear at September 9, 2005 8:01 PM

Post a comment

Remember Me?



我爱网络
2007-12-31 23:51 2007年度 ipcn.org/ipchina.org 总结报告
2007-12-31 00:31 vmware gsx server service
2007-12-31 00:15 squid 对 404 302 缓存的相关问题
2007-12-30 14:24 升级到 MovableType 3.3x 并修改 entry_basename 兼容性
2007-12-30 13:52 [php] realip judge 前面补0的ip格式剔除
2007-12-14 16:34 rm -rf * 系统管理员要排查的定时炸弹
2007-12-13 19:03 山西的宽带运营商太过分了 私自窜改dns解析
2007-12-13 16:35 F5 MIB 再学习 唯一性标记用地址的小bug
2007-12-11 22:15 perl 用Spreadsheet::WriteExcel写了个处理/读写excel的小程序
2007-12-11 13:39 perl 变量转义的问题

本站使用中的任何问题,请与 windtear SPAM windtear SPAM net 联系
Copyright© 1999-2008 Windtear. All rights reserved.
京ICP备05050670号