转速在spec文件中编写脚本

发布于 2024-10-31 18:37:30 字数 130 浏览 0 评论 0原文

是否可以在spec文件中编写ksh脚本?

目标是

根据spec文件在rpm -i my_rpm.rpm期间,ksh脚本将执行一些安装和操作配置

例如运行其他脚本并编辑一些文件

THX

is it possible to write ksh script in the spec file?

the target is during rpm -i my_rpm.rpm

according to the spec file , ksh script will do some installation & configuration

for example run other script and edit some files

THX

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一念一轮回 2024-11-07 18:37:30

我相信您可以使用 -p 指定脚本中使用的 shell。

所以它看起来像:

%post -p /sbin/ldconfig

或者:

%post -p /bin/ksh
do_stuff_here

You can specify the shell to use in the script with -p I believe.

So it would look like:

%post -p /sbin/ldconfig

Or:

%post -p /bin/ksh
do_stuff_here
血之狂魔 2024-11-07 18:37:30

Spec 文件中的 Scriptlet 通常由 bash 执行;但是,如果您需要使用不同的 shell,您当然可以这样做。只需写这样的内容:

cat > /tmp/script <<EOF
# write script here

EOF

ksh /tmp/script

好吧,这不是很安全,但你明白了。这会更安全,但我不确定它是否有效:

ksh <<EOF
# write script here

EOF

Scriptlets in a spec file are normally executed by bash; however, if you need to use a different shell you could of course do that. Just write something like this:

cat > /tmp/script <<EOF
# write script here

EOF

ksh /tmp/script

OK, that is not very secure but you get the idea. This would be more secure, but I'm not sure if it would work:

ksh <<EOF
# write script here

EOF
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文