28 lines
531 B
Bash
Executable File
28 lines
531 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Author : Gaston Gonzalez
|
|
# Date : 16 March 2024
|
|
# Purpose : Main installer for EmComm Tools OS Community
|
|
set -e
|
|
trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG
|
|
trap 'et-log "\"${last_command}\" command failed with exit code $?."' ERR
|
|
|
|
. ./env.sh
|
|
. ./functions.sh
|
|
|
|
exitIfNotRoot
|
|
|
|
./bootstrap.sh
|
|
./update-apt.sh
|
|
|
|
./install-base.sh
|
|
./install-dev-tools.sh
|
|
./install-browser.sh
|
|
./remove-packages.sh
|
|
./install-branding.sh
|
|
|
|
./configure-gnome.sh
|
|
./configure-user.sh
|
|
|
|
#./cf20-fix-brightness.sh
|