This commit is contained in:
Strix 2024-05-23 20:21:18 +02:00
commit 3bc0ded5a0
7 changed files with 102 additions and 0 deletions

15
install.sh Executable file
View 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