mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-05 04:55:50 +01:00
Merge pull request #1230 from scm-manager/bugfix/debian_installation
adds missing architecture to debian installation documentation
This commit is contained in:
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
### Fixed
|
### Fixed
|
||||||
- Fixed installation of debian packages on distros without preinstalled `at` ([#1216](https://github.com/scm-manager/scm-manager/issues/1216) and [#1217](https://github.com/scm-manager/scm-manager/pull/1217))
|
- Fixed installation of debian packages on distros without preinstalled `at` ([#1216](https://github.com/scm-manager/scm-manager/issues/1216) and [#1217](https://github.com/scm-manager/scm-manager/pull/1217))
|
||||||
- Fixed broken migration with empty security.xml ([#1219](https://github.com/scm-manager/scm-manager/issues/1219) and [#1221](https://github.com/scm-manager/scm-manager/pull/1221))
|
- Fixed broken migration with empty security.xml ([#1219](https://github.com/scm-manager/scm-manager/issues/1219) and [#1221](https://github.com/scm-manager/scm-manager/pull/1221))
|
||||||
|
- Added missing architecture to debian installation documentation ([#1230](https://github.com/scm-manager/scm-manager/pull/1230))
|
||||||
|
|
||||||
## [2.1.1] - 2020-06-23
|
## [2.1.1] - 2020-06-23
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ displayToc: true
|
|||||||
The following code block will configure an apt repository for scm-manager and install it.
|
The following code block will configure an apt repository for scm-manager and install it.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
echo 'deb https://packages.scm-manager.org/repository/apt-v2-releases/ stable main' | sudo tee /etc/apt/sources.list.d/scm-manager.list
|
echo 'deb [arch=all] https://packages.scm-manager.org/repository/apt-v2-releases/ stable main' | sudo tee /etc/apt/sources.list.d/scm-manager.list
|
||||||
sudo apt-key adv --recv-keys --keyserver hkps://keys.openpgp.org 0x975922F193B07D6E
|
sudo apt-key adv --recv-keys --keyserver hkps://keys.openpgp.org 0x975922F193B07D6E
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install scm-server
|
sudo apt-get install scm-server
|
||||||
@@ -24,7 +24,7 @@ To install SCM-Manager as a debian package (.deb), we have to configure an apt r
|
|||||||
Create a file at `/etc/apt/sources.list.d/scm-manager.list` with the following content:
|
Create a file at `/etc/apt/sources.list.d/scm-manager.list` with the following content:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
deb https://packages.scm-manager.org/repository/apt-v2-releases/ stable main
|
deb [arch=all] https://packages.scm-manager.org/repository/apt-v2-releases/ stable main
|
||||||
```
|
```
|
||||||
|
|
||||||
This will add the apt repository of the scm-manager stable releases to the list of your apt repositories.
|
This will add the apt repository of the scm-manager stable releases to the list of your apt repositories.
|
||||||
|
|||||||
Reference in New Issue
Block a user