diff options
author | Frederic Lepied <flepied@mandriva.com> | 2002-01-29 03:32:47 +0000 |
---|---|---|
committer | Frederic Lepied <flepied@mandriva.com> | 2002-01-29 03:32:47 +0000 |
commit | d12f477c69caa7c6b19239749c12566959d21be8 (patch) | |
tree | 7e143ca7db245d21d75e9e23fc747784db975552 /cron-sh | |
parent | f098ae3e44670c5b8ea465fa7e4b503d231228a9 (diff) | |
download | msec-d12f477c69caa7c6b19239749c12566959d21be8.tar msec-d12f477c69caa7c6b19239749c12566959d21be8.tar.gz msec-d12f477c69caa7c6b19239749c12566959d21be8.tar.bz2 msec-d12f477c69caa7c6b19239749c12566959d21be8.tar.xz msec-d12f477c69caa7c6b19239749c12566959d21be8.zip |
changed the wording for the rpm-va changes.
Diffstat (limited to 'cron-sh')
-rwxr-xr-x | cron-sh/diff_check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cron-sh/diff_check.sh b/cron-sh/diff_check.sh index c31add2..7588877 100755 --- a/cron-sh/diff_check.sh +++ b/cron-sh/diff_check.sh @@ -145,7 +145,7 @@ if [[ ${RPM_CHECK} == yes ]]; then if [[ -f ${RPM_VA_YESTERDAY} ]]; then diff -u ${RPM_VA_YESTERDAY} ${RPM_VA_TODAY} > ${RPM_VA_DIFF} if [ -s ${RPM_VA_DIFF} ]; then - printf "\nSecurity Warning: These files have been modified on the system :\n" >> ${TMP} + printf "\nSecurity Warning: These files belonging to packages have changed of status on the system :\n" >> ${TMP} grep '^+' ${RPM_VA_DIFF} | grep -vw "^+++ " | sed 's|^.||' | while read file; do printf "\t\t- newly modified : ${file}\n" done >> ${TMP} |