init
This commit is contained in:
commit
b4cdb80b5c
137 changed files with 6383 additions and 0 deletions
14
bin/.bin/nosql.sh
Executable file
14
bin/.bin/nosql.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
bin=$HOME/.bin/nosql
|
||||
|
||||
# if nosql binary is not found, download it
|
||||
if [ ! -f $bin ]; then
|
||||
echo "Downloading NoSql binary..."
|
||||
url="https://s3.nosqlbooster.com/download/releasesv7/nosqlbooster4mongo-7.1.17.AppImage"
|
||||
wget -q -O $bin $url
|
||||
chmod +x $bin
|
||||
fi
|
||||
|
||||
# execute leapp
|
||||
$bin
|
Loading…
Add table
Add a link
Reference in a new issue