blob: 2e4f8cf5c6287045768544a6d28b53646d078e80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
echo "Add this line to /etc/environment"
echo " export FABRIC_CFG_PATH=/etc/hyperledger/fabric/"
echo " export CORE_PEER_MSPCONFIGPATH=$FABRIC_CFG_PATH/msp"
echo " export CORE_LOGGING_LEVEL=DEBUG"
}
post_upgrade() {
post_install $1
}
post_remove() {
echo "Remove this line to /etc/environment"
echo " export FABRIC_CFG_PATH=/etc/hyperledger/fabric/"
echo " export CORE_PEER_MSPCONFIGPATH=$FABRIC_CFG_PATH/msp"
echo " export CORE_LOGGING_LEVEL=DEBUG"
}
|