mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
acbaed2e23
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
14 lines
341 B
Bash
14 lines
341 B
Bash
config() {
|
|
NEW="$1"
|
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
|
if [ ! -r $OLD ]; then
|
|
mv $NEW $OLD
|
|
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
|
rm $NEW
|
|
fi
|
|
}
|
|
|
|
CONFIGS="classification.config reference.config suricata.yaml threshold.config"
|
|
for file in $CONFIGS; do
|
|
config etc/suricata/${file}.new
|
|
done
|