[feature] script to install mongodb-cli tools
This commit is contained in:
parent
bc20e480d4
commit
2e539b950b
15
apps/mongocli.sh
Executable file
15
apps/mongocli.sh
Executable file
|
@ -0,0 +1,15 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
DIR=$(dirname "$(readlink -f "$0")")
|
||||||
|
. "$DIR/../env.sh"
|
||||||
|
|
||||||
|
|
||||||
|
# install mongodb-cli tools only
|
||||||
|
case "$PM" in
|
||||||
|
apt)
|
||||||
|
sudo apt install mongodb-clients
|
||||||
|
;;
|
||||||
|
pacman)
|
||||||
|
# TODO
|
||||||
|
;;
|
||||||
|
esac
|
Loading…
Reference in New Issue
Block a user