Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dee042ce authored by Florent VINCENT's avatar Florent VINCENT 👾
Browse files

Merge branch 'dev/ubuntu24-updates' into 'master'

added installation of salt repo for ubuntu24

See merge request !98
parents 2b662791 e61376e7
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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 : 
+4 −0
Original line number Diff line number Diff line
@@ -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