Updates README for the apt-key deprecation.
parent
06416df138
commit
97b4577504
22
README.md
22
README.md
|
@ -1,8 +1,8 @@
|
||||||
# Unofficial Innernet APT Repository
|
# Unofficial Innernet APT Repository
|
||||||
|
|
||||||
This is a Debian/Ubuntu APT repository containing `.deb` files from
|
This is a Debian/Ubuntu APT repository containing `.deb` files from
|
||||||
https://github.com/tonarino/innernet/releases. The updates are
|
https://github.com/tonarino/innernet/releases. The updates are fully
|
||||||
automatic and running on a biweekly schedule.
|
reproducible through GitHub Actions.
|
||||||
|
|
||||||
For more information, see https://github.com/tonarino/innernet.
|
For more information, see https://github.com/tonarino/innernet.
|
||||||
|
|
||||||
|
@ -10,16 +10,12 @@ For more information, see https://github.com/tonarino/innernet.
|
||||||
|
|
||||||
### Adding the Repository
|
### Adding the Repository
|
||||||
|
|
||||||
```shell
|
```sh
|
||||||
$ curl -sS https://tommie.github.io/innernet-debian/repository.key | apt-key add -
|
curl -sS https://tommie.github.io/innernet-debian/repository.asc | sudo tee /etc/apt/keyrings/github-tommie-innernet.asc >/dev/null
|
||||||
OK
|
cat >/etc/apt/sources.list.d/innernet.list <<EOF
|
||||||
$ cat >/etc/apt/sources.list.d/innernet.list <<EOF
|
deb [signed-by=/etc/apt/keyrings/github-tommie-innernet.asc] https://tommie.github.io/innernet-debian/debian unstable contrib
|
||||||
deb https://tommie.github.io/innernet-debian/debian unstable contrib
|
|
||||||
EOF
|
EOF
|
||||||
$ apt update
|
apt update
|
||||||
...
|
|
||||||
Get:5 https://tommie.github.io/innernet-debian/debian unstable InRelease [1.729 B]
|
|
||||||
...
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Installing the Server
|
### Installing the Server
|
||||||
|
@ -28,7 +24,7 @@ This is installed on the coordination server machine. It needs to be
|
||||||
accessible from all peers.
|
accessible from all peers.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ apt install innernet-server
|
$ sudo apt install innernet-server
|
||||||
```
|
```
|
||||||
|
|
||||||
### Installing the Peer Client
|
### Installing the Peer Client
|
||||||
|
@ -36,7 +32,7 @@ $ apt install innernet-server
|
||||||
This is installed on all peers.
|
This is installed on all peers.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ apt install innernet
|
$ sudo apt install innernet
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
Loading…
Reference in New Issue