« RSA SecurID Authentication linux sshd PAM deploy | Main | 中国互联网协会反垃圾邮件举报受理中心揭牌 »
February 20, 2006
为RSA部署打包写 rpm spec 牵涉的一些TIPS
版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本声明。 https://windtear.net/archives/2006/02/20/000920.html http://windtear.net/archives/2006/02/20/000920.html 为RSA部署打包写 rpm spec 牵涉的一些TIPS 上周五提了《RSA SecurID linux sshd PAM 部署》 为了部署方便 今天写了 rpm spec 这里顺便提一下spec的一些小事 (注: 以前写过《Spec - the road of RPM》) 1. rpmbuild 时参数define的处理 如 --define 'skip_xxx 1' %define no_x11_askpass 0 %{?skip_x11_askpass:%define no_x11_askpass 1} %if ! %{no_x11_askpass} BuildPreReq: XFree86-devel %endif 2. spec 的变量 $RPM_BUILD_ROOT $RPM_SOURCE_DIR/ 如 Name: 可以用 %{name} 调用 %{_vendor} 3. install -m 700 -o root 4. %files %defattr(-,root,root) /ipcn/openssh %config(noreplace) /ipcn/openssh/etc/*config /etc/rc.d/init.d/opensshrsa 5. %define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`) |
Posted by windtear at February 20, 2006 11:51 PM