Skip to content

Commit 9f6f90f

Browse files
committed
Adding Hyperledger Fabric also
1 parent e667264 commit 9f6f90f

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,6 @@ This will install Git on your machine!
2929
|Nginx |Yes|Yes|Yes |Yes|Yes|No |https://installer.to/nginx |
3030
|gCloud |No |No |No |No |No |Yes |https://installer.to/gcloud |
3131
|Docker |Yes|Yes|No |No |No |No |https://installer.to/docker |
32+
|Fabric |Yes|Yes|Yes |Yes|Yes|No |https://installer.to/hlf |
3233

3334
<!-- end of tools list -->

installers.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,8 @@ installers = "curl"
3131
name = "Docker"
3232
description = "Docker"
3333
installers = "apt,yum"
34+
35+
[hlf]
36+
name = "Fabric"
37+
description = "Hyperledger Fabric"
38+
installers = "apt,yum,pacman,dnf,apk"

installers/hlf/installer.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
2+
33
CURL_CMD=$(which curl) # curl tool
44
YUM_CMD=$(which yum) # yum package manager for RHEL & CentOS
55
DNF_CMD=$(which dnf) # dnf package manager for new RHEL & CentOS
@@ -36,7 +36,7 @@ fi
3636
echo "downloading Fabric........"
3737
curl -sSL http://bit.ly/2ysbOFE -o bootstrap.sh
3838
chmod 755 ./bootstrap.sh
39-
$SUDO bash ./bootstrap.sh
39+
$SUDO bash ./bootstrap.sh
4040

4141
# Copying binaries
4242
$SUDO cp ./fabric-samples/bin/* /usr/local/bin

installers/hlf/installer.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
name = "Fabric"
2+
shortname = "hlf"
3+
description = "Hyperledger Fabric"
4+
5+
16
[apt]
27
sh = """
38
@sudo apt-get update

0 commit comments

Comments
 (0)