#!/bin/sh
#update tripwire report
dir=/usr/local/lib/tripwire/report/
report_file=$(ls -l $dir | tail -1 | awk '{print $NF}')
tripwire --update --accept-all --twrfile $dir$report_file -P [passphrase]
if [ $? -eq 0 ]; then
echo "Updated successfully!"
else
echo "Update failed! There might be some problem."
fi
TripwireのDBをアップデートするスクリプトです。
"--accept-all"はレポートファイルに含まれる全ての情報をDBへ反映させるオプションになります。
任意の情報のみをDBに反映させたい場合は本スクリプトは適しません。
DBのアップデートについては以下を参照
https://www.tripwire.co.jp/products/data/guide/guide08.html
以上