diff --git a/README.md b/README.md index 91f5232afdf56b469c23397714d236031464462b..7f566ab52af7bd5b0737c33dfd5b6d2e4acc132b 100644 --- a/README.md +++ b/README.md @@ -42,9 +42,9 @@ Systemd is required to handle the database backup scripts. ### Create an Ubuntu server instance -The project should work with any Ubuntu server (Virtual Private Server (VPS), dedicated server...) version 22.04 latest LTS (Ubuntu 20.04 & 18.04 supported too) +The project should work with any Ubuntu server (Virtual Private Server (VPS), dedicated server...) version 24.04 latest LTS (older Ubuntu 22.04,20.04,.. supported too) -Installation on Debian Bullseye (11) stable works as well. +Installation on Debian Bullseye (11) old stable works as well. (debian 12 might also, though not tested) Suggestions include (non-exhaustive list): - [Hetzner](https://www.hetzner.com/cloud) @@ -59,6 +59,7 @@ First, create your hosting server. Please follow your hoster documentation to cr - `apt update` - `apt upgrade` + ### Set your server with proper DNS settings The below instructions needs to be done in 2 different place : diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 00a102c6bc993f5ce6755537ef8d44e020e46655..d67d568da29b2af8dcf039bbe50558107049c16b 100644 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -7,6 +7,10 @@ case $LINUX_VERSION in Ubuntu) echo "Ubuntu detected" case $LINUX_RELEASE in + 24.04) + curl -fsSL -o /etc/apt/keyrings/salt-archive-keyring-2023.gpg https://repo.saltproject.io/salt/py3/ubuntu/24.04/amd64/SALT-PROJECT-GPG-PUBKEY-2023.gpg + echo "deb [signed-by=/etc/apt/keyrings/salt-archive-keyring-2023.gpg arch=amd64] https://repo.saltproject.io/salt/py3/ubuntu/24.04/amd64/latest noble main" | sudo tee /etc/apt/sources.list.d/salt.list + ;; 22.04) curl -fsSL -o /usr/share/keyrings/salt-archive-keyring.gpg https://repo.saltproject.io/py3/ubuntu/20.04/amd64/3004/salt-archive-keyring.gpg echo "deb [signed-by=/usr/share/keyrings/salt-archive-keyring.gpg arch=amd64] https://repo.saltproject.io/py3/ubuntu/20.04/amd64/3004 focal main" | tee /etc/apt/sources.list.d/salt.list