init
This commit is contained in:
commit
3bc0ded5a0
7 changed files with 102 additions and 0 deletions
15
install.sh
Executable file
15
install.sh
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
[ "$(id -u)" = "0" ] || exit 1
|
||||
[ $# -lt 1 ] && exit 1
|
||||
|
||||
case $1 in
|
||||
node)
|
||||
cd nodes
|
||||
sh install.sh
|
||||
;;
|
||||
main)
|
||||
cd main
|
||||
sh install.sh
|
||||
;;
|
||||
esac
|
Loading…
Add table
Add a link
Reference in a new issue