Compare commits

..

No commits in common. "45c2641a36f969524ea28ca9781288a025f83658" and "92eb05c8364fa8949dc9cabfcff954d60f3162a2" have entirely different histories.

5 changed files with 8 additions and 9 deletions

View File

@ -23,7 +23,7 @@ var_disk="2"
var_cpu="1"
var_ram="512"
var_os="debian"
var_version="12"
var_version="11"
variables
color
catch_errors

View File

@ -23,7 +23,7 @@ var_disk="8"
var_cpu="2"
var_ram="2048"
var_os="debian"
var_version="12"
var_version="11"
variables
color
catch_errors

View File

@ -23,7 +23,7 @@ var_disk="4"
var_cpu="1"
var_ram="1024"
var_os="debian"
var_version="12"
var_version="11"
variables
color
catch_errors

View File

@ -23,7 +23,7 @@ var_disk="8"
var_cpu="2"
var_ram="2048"
var_os="debian"
var_version="12"
var_version="11"
variables
color
catch_errors

View File

@ -21,9 +21,8 @@ $STD apt-get install -y gnupg
msg_ok "Installed Dependencies"
msg_info "Setting up PostgreSQL Repository"
VERSION="$(awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release)"
echo "deb http://apt.postgresql.org/pub/repos/apt ${VERSION}-pgdg main" >/etc/apt/sources.list.d/pgdg.list
curl -sSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor --output /etc/apt/trusted.gpg.d/postgresql.gpg
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt bullseye-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
$STD apt-key add <(curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc)
msg_ok "Setup PostgreSQL Repository"
msg_info "Installing PostgreSQL"
@ -137,8 +136,8 @@ read -r -p "Would you like to add Adminer? <y/N> " prompt
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
msg_info "Installing Adminer"
$STD apt install -y adminer
$STD a2enconf adminer
systemctl reload apache2
$STD sudo a2enconf adminer
$STD systemctl reload apache2
msg_ok "Installed Adminer"
fi