1
0
forked from pool/kernel-source
Files
kernel-source/splitflist
Michal Suchanek a8e91a6110 GIT Revision: 547d979b9bf745e1fb73e553584d7c7edca49cec
GIT Branch: stable
2025-09-03 13:40:42 +0000
2025-09-03 15:43:00 +02:00

17 lines
411 B
Bash

#!/bin/bash -e
package="$1"
present="$2"
ghost="$3"
missing=""
rpm -ql --noghost "$package" | while read x ; do
[ -e "$x" -o -L "$x" ] && echo "$x" >> "$present" || echo Missing file "$x"
done
rpm -q --qf '[%{FILEFLAGS} %{FILENAMES} 0%{FILEMODES:octal} %{FILESIZES} %{FILEMTIMES} %{FILELINKTOS}\n]' $package | while read -a line; do
[ $[line[0]&64] = 64 ] || continue
echo "${line[@]:1}"
done > "$ghost"