diff options
author | Michael Edie <michael@sawbox.net> | 2019-06-22 20:53:13 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-06-22 20:53:13 +0700 |
commit | 96cadfe7d17ab90f83cf3d8b24dd6602a120254d (patch) | |
tree | ac1bc5dcc16008b010c1a103dc0cfdead31685e2 /system/usbguard/doinst.sh | |
parent | ef3c179517626bc74865500083746d43666ad791 (diff) |
system/usbguard: Added (protection against rogue USB devices).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/usbguard/doinst.sh')
-rw-r--r-- | system/usbguard/doinst.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/system/usbguard/doinst.sh b/system/usbguard/doinst.sh new file mode 100644 index 000000000000..1d67f5cd4afa --- /dev/null +++ b/system/usbguard/doinst.sh @@ -0,0 +1,25 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +preserve_perms etc/rc.d/rc.usbguard.new +config etc/logrotate.d/usbguard.new |