-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Matthieu Nottale <[email protected]>
- Loading branch information
Matthieu Nottale
committed
Aug 21, 2017
1 parent
df74520
commit 1a8a703
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
VERSION=$1 | ||
if test -z "$VERSION"; then | ||
VERSION=0.9.2 | ||
fi | ||
|
||
tarball=https://storage.googleapis.com/sh_infinit_releases/linux64/memo-x86_64-linux_debian_oldstable-gcc4-$VERSION.tbz | ||
|
||
wget "$tarball" | ||
tar -xvf memo-x86_64-linux_debian_oldstable-gcc4-$VERSION.tbz | ||
mv memo-x86_64-linux_debian_oldstable-gcc4-$VERSION memo | ||
|
||
memo/bin/memo user create | ||
memo/bin/memo silo create filesystem silo | ||
memo/bin/memo network create network --silo silo | ||
memo/bin/memo kvs create --name kvs --network network |