15 lines
No EOL
200 B
Bash
Executable file
15 lines
No EOL
200 B
Bash
Executable file
#!/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 |