mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-25 11:05:10 +00:00
13 lines
No EOL
376 B
YAML
13 lines
No EOL
376 B
YAML
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
steps:
|
|
- script: |
|
|
sudo apt install -y softhsm2
|
|
displayName: Install SoftHSM
|
|
- script: |
|
|
echo directories.tokendir = /tmp > $HOME/softhsm2.conf
|
|
export SOFTHSM2_CONF=$HOME/softhsm2.conf
|
|
softhsm2-util --init-token --slot 0 --label "ForFabric" --pin 98765432 --so-pin 1234
|
|
displayName: Set up SoftHSM |