Files

12 lines
158 B
Awk
Raw Permalink Normal View History

2026-04-23 17:07:55 +08:00
/Name:.*/ {
package = substr($0, 7)
next
}
/postinstall.*scriptlet .*/ {
next
}
{
print $0 >> ENVIRON["D"] "/etc/rpm-postinsts/" package ".sh"
}