Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../.././.././../../../usr/lib/tpmfod-sysevent
Real path: /usr/lib/tpmfod-sysevent
Zurück
#! /usr/bin/ksh # # Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. # export PATH=/usr/bin:/usr/sbin # # tpmfod-sysevent # # Sysevent invokes this script for TPM Failover. That is, events for # vendor SUNW, publisher tpm, class EC_tpm, and subclass ESC_tpm_failover. # It was enabled by adding an event with syseventadm(8) from script # tpmfod-sysevent-setup.ksh. # # Parameters: # name=value pairs with event information. # For example (line broken for readability): # vendor=SUNW publisher=tpm class=EC_tpm subclass=ESC_tpm_failover # _PATH_SYSVOL="/system/volatile" FILE_PREFIX="application-security-tcsd:" TPMFOD_PID_FILE="${_PATH_SYSVOL}/${FILE_PREFIX}tpmfod.pid" # If tpmfod is running, then signal to tpmfod that failover occurred if [[ -s "$TPMFOD_PID_FILE" ]] ; then kill -USR2 $(cat $TPMFOD_PID_FILE) fi