Compare commits

..

1 commit

Author SHA1 Message Date
a6eab1e5ed Update docs to match current structure
Some checks failed
CI / build (push) Successful in 15m56s
CI / build (pull_request) Failing after 32s
2024-10-02 17:41:11 +03:00
2 changed files with 13 additions and 4 deletions

View file

@ -2,6 +2,7 @@ name: CI
on:
push:
pull_request:
env:
ATTIC_AUTH_TOKEN: ${{ secrets.ATTIC_AUTH_TOKEN }}

View file

@ -5,14 +5,22 @@ Note that you have to be connected to the `vpn.qo.is`
and that you need to have SSH root access to the target machines.
## Deploy to selected target hosts
#### Deploy to all hosts
```bash
nix run .#deploy-qois .#<hostname>.system .#<hostname2>.system
nix run .#deploy-qois
```
## Deploy with extended timeouts (sometimes required for slow APU devices)
#### Deploy to selected target hosts
```bash
nix run .#deploy-qois .#calanda.system -- --confirm-timeout 600 --activation-timeout 600
nix run .#deploy-qois .#<hostname> .#<hostname2>
```
#### Deploy with extended timeouts (sometimes required for slow APU devices)
```bash
nix run .#deploy-qois .#calanda -- --confirm-timeout 600 --activation-timeout 600
```