diff options
author | K. Eugene Carlson <kvngncrlsn@gmail.com> | 2022-04-29 08:48:30 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-30 13:51:53 +0700 |
commit | 34f533066233491e7865da05a8a583b519618002 (patch) | |
tree | 33809899306ee92d981a061823f03e53fc1287ec /system/swtpm/doinst.sh | |
parent | 234528016d454381ad6be53931877ab800c4e295 (diff) |
system/swtpm: Added (libtpms-based TPM emulator)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/swtpm/doinst.sh')
-rw-r--r-- | system/swtpm/doinst.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/system/swtpm/doinst.sh b/system/swtpm/doinst.sh new file mode 100644 index 000000000000..007903496ae8 --- /dev/null +++ b/system/swtpm/doinst.sh @@ -0,0 +1,16 @@ +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... +} + +config etc/swtpm_setup.conf.new +config etc/swtpm-localca.conf.new +config etc/swtpm-localca.options.new |