10 lines
98 B
Bash
Executable File
10 lines
98 B
Bash
Executable File
#!/bin/bash
|
|
|
|
exec &> >(tee logs.out)
|
|
|
|
set -a
|
|
. ./config
|
|
set +a
|
|
|
|
bash ./modules/"$install_type".sh
|