12 lines
139 B
Bash
Executable File
12 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
|
|
exec &> >(tee logs.out)
|
|
|
|
set -a
|
|
. ./config
|
|
set +a
|
|
|
|
printf '%s\n' "${pkg[@]}" > pkglist.txt
|
|
|
|
bash ./modules/"$install_type".sh
|