This patch ensures the rpm cronjob to record rpmpkgs uses the full path to

prevent potential PATH issues (rh#174211).
This commit is contained in:
Paul Nasrat 2007-02-22 12:21:11 +00:00
parent f94c3f49cb
commit df0ad26d26
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
rpm -qa --qf '%{name}-%{version}-%{release}.%{arch}.rpm\n' 2>&1 \
| sort > /var/log/rpmpkgs
/bin/rpm -qa --qf '%{name}-%{version}-%{release}.%{arch}.rpm\n' 2>&1 \
| /bin/sort > /var/log/rpmpkgs